export type Flag = [ boolean, { on: () => void; off: () => void; toggle: () => void; set: React.Dispatch>; } ]; export declare const useFlag: (initial?: boolean) => Flag;