import React from 'react'; interface Props { children: React.ReactNode; disabled?: boolean; optional?: boolean | string; } /** * manually re-implements MUI's FormLabel component to allow more control over positioning etc */ export default function ControlledFormLabel({ children, optional, disabled, }: Props): JSX.Element; export {};