/// interface Props { className?: string; description?: string; disabled?: boolean; optional?: boolean | string; label?: string; onExampleClick?: () => void; } /** * This component provides styled decorations for label, description, and error message with our custom styles */ export default function FormLabel({ label, description, disabled, className, optional, onExampleClick, }: Props): JSX.Element; export {};