import { SelectProps as AntdSelectProps } from 'antd/lib/select'; import React from 'react'; export interface SelectProps extends AntdSelectProps { options: Array<{ value: string; label: React.ReactNode; }>; onChange?: (val: string) => void; value: string; } export declare function Select(props: SelectProps): JSX.Element;