/// export interface Props { value?: [string, string]; onChange?: (value: [string, string]) => void; } export default function NumberRange(props: Props): JSX.Element;