declare type Flag = [boolean, { on: () => void; off: () => void; toogle: () => void; }]; export declare const useFlag: (initial?: boolean) => Flag; export {};