import React from "react"; export interface Props { value?: string; options?: string[]; onChange?: React.ChangeEventHandler; label?: string; type?: string; required?: boolean; ariaLabelledBy?: string; ariaLabel?: string; } declare function FormSelect({ value, options, onChange, label, type, required, ariaLabelledBy, ariaLabel, }: Props): React.JSX.Element | null; export default FormSelect;