import { Context } from '../../types';
interface ContextConfiguration {
    useVSFContext: () => Context;
}
declare let useVSFContext: () => Context<any, any, any>;
declare const configureContext: (config: ContextConfiguration) => void;
declare const generateContext: (factoryParams: any) => any;
export { generateContext, useVSFContext, configureContext };
