import type React from 'react'; import type { SelectProps } from '../../../../types/select'; /*** Wraps Select presentation in the canonical Surface form-field semantics. */ export declare function SelectField({ children, props }: SelectFieldProps): React.JSX.Element; interface SelectFieldProps { children: React.ReactNode; props: SelectProps; } export {}; //# sourceMappingURL=SelectField.d.ts.map