UNPKG

439 BTypeScriptView Raw
1import { type HTMLChakraProps } from "../styled-system";
2export interface ThemeProps extends HTMLChakraProps<"div"> {
3 /**
4 * The appearance of the theme.
5 */
6 appearance?: "light" | "dark";
7 /**
8 * Whether to apply the theme background and color.
9 */
10 hasBackground?: boolean;
11}
12export declare const Theme: import("react").ForwardRefExoticComponent<ThemeProps & import("react").RefAttributes<HTMLDivElement>>;