export declare const GET_FLAG: any; export declare const useFlag: (expName: string, skip?: boolean | undefined) => boolean[]; declare type FlagState = { isActive: boolean | null; status: 'UNKNOWN' | 'FETCHING' | 'READY'; }; export declare const useLazyFlag: (expName: string) => [() => Promise, FlagState]; export declare const useFlagValue: ({ flag, userId, skip, }: { flag: string; userId?: number | null | undefined; skip?: boolean | undefined; }) => { isActive: boolean | undefined; isLoading: boolean; }; export declare const trackFlag: (flag: string) => void; export {}; //# sourceMappingURL=useFlag.d.ts.map