/// interface LabeledInputProps { id: string; label: string; helper: string; onContentChange: (content: string) => void; init?: string; } declare function LabeledInput(props: LabeledInputProps): JSX.Element; export default LabeledInput;