import type { FC, HTMLAttributes } from "react"; import type { KeepTheme } from "./KeepTheme"; import { DeepPartial } from "../helpers/deep-partial"; export interface ThemeProps { dark?: boolean; theme?: DeepPartial; usePreferences?: boolean; } interface KeepProps extends HTMLAttributes { children: React.ReactNode; theme?: ThemeProps; } export declare const Keep: FC; export type { KeepTheme } from "./KeepTheme";