import React from 'react'; import { WidthProps } from 'styled-system'; import { FieldProps } from '../AccessibleField/AccessibleField'; import Select, { SelectProps } from '../Select/Select'; interface SelectFieldProps extends WidthProps, FieldProps, Omit { className?: string; id?: string; multiple?: boolean; } declare type SelectFieldType = React.FC & { Option: typeof Select.Option; }; export declare const SelectField: import("styled-components").StyledComponent; export default SelectField;