import { default as React } from 'react'; type ColorCardProps = { category: string; shade: string; color: string; }; export declare const ColorCard: ({ category, shade, color }: ColorCardProps) => import("react/jsx-runtime").JSX.Element; type ColorPaletteProps = { title: string; category: string; shades: Record; }; export declare const ColorPalette: ({ title, category, shades }: ColorPaletteProps) => import("react/jsx-runtime").JSX.Element; type ThemeDocProps = { children?: React.ReactNode; }; export declare const ThemeDoc: ({ children }: ThemeDocProps) => import("react/jsx-runtime").JSX.Element; export {};