import PropTypes from 'prop-types'; import { ThemeColorIndex } from "../../styles/theme.interface"; export interface FormFrameProps { icon: { viewBox: string; path: string; }; children: any; className?: string; color?: ThemeColorIndex; [props: string]: any; } export declare const FormFrame: { ({ icon, color, children, className, ...props }: FormFrameProps): import("@emotion/react/jsx-runtime").JSX.Element; propTypes: { children: PropTypes.Validator; icon: PropTypes.Validator; color: PropTypes.Requireable; className: PropTypes.Requireable; }; };