import { AdaptableApi, AdaptableState, Layout } from '@adaptabletools/adaptable'; type EqualityFn = (a: any, b: any) => boolean; export declare function useAdaptableApi(): AdaptableApi | null; export declare function useAdaptableState(): AdaptableState | null; export declare function useAdaptableState(selector: (state: AdaptableState) => T, equalityFn?: EqualityFn): T | null; export declare const useCurrentLayout: () => [Layout | null, (layoutName: string) => void]; export {};