import { AdaptableBlotterOptions } from '../BlotterOptions/AdaptableBlotterOptions'; import { IAdaptableBlotter } from '../Utilities/Interface/IAdaptableBlotter'; /** * We would like to get rid of this annoying class. * Its ONLY being used by the React Wrapper as presently we use it to create either ag-Grid or Hypergrid instances. * This wil disappear when we move to React-aggrid only wrappers. */ export declare module BlotterFactory { function CreateAdaptableBlotter(adaptableBlotterOptions: AdaptableBlotterOptions, vendorGridName: 'agGrid' | 'Hypergrid'): IAdaptableBlotter; }