import * as React from 'react'; import "./style.css"; declare type IMode = 'normal' | 'input'; interface IProps extends React.Props { value: string; mode?: IMode; style?: React.CSSProperties; className?: string; placeholder?: string; expand?: boolean; onChange?: (value: string) => void; onDownClick?: (expand: boolean) => void; onBlur?: () => void; } interface IOptProps extends React.Props { value: string; style?: React.CSSProperties; className?: string; } export declare const Select: { (props: IProps): JSX.Element; Option: typeof Option; }; declare function Option(_props: IOptProps): null; export {};