declare type Props = { isRequired?: boolean; children?: string; }; declare function Label(props: Props): JSX.Element; export default Label;