import { ColorModesEnum } from '../../../../ThemeProvider'; type FormExampleProps = { colorMode?: ColorModesEnum.LIGHT | ColorModesEnum.DARK; type?: 'default' | 'extended'; }; export declare function FormExample({ type, colorMode }: FormExampleProps): import("react/jsx-runtime").JSX.Element; export {};