import React, { ReactNode } from 'react'; import { default as AntdSelect } from 'antd/lib/select'; import type { SelectProps as AntdSelectProps } from 'antd/lib/select'; export interface SelectProps extends AntdSelectProps { borderStyle?: 'outline'; children?: ReactNode; options?: Array; fieldNames?: { label?: string; value?: string; options?: string; }; readonly?: boolean; } interface SelectComponent extends React.ForwardRefExoticComponent> { OptGroup: typeof AntdSelect.OptGroup; Option: typeof AntdSelect.Option; } export declare const InternalSelect: SelectComponent; export declare const Select: SelectComponent; export {}; //# sourceMappingURL=select.d.ts.map