export declare function useDarkMode(options?: {
    localStorageKey?: string;
    defaultDark?: boolean;
}): [boolean, (dark: boolean) => void];
