import * as React from 'react'; import { CreatableFunctionComponent } from '@appbuckets/react-ui-core'; import { SelectDefaultOption, SelectOption, SelectProps } from './Select.types'; export declare type SelectComponent< Option extends SelectOption = SelectDefaultOption > = CreatableFunctionComponent>; declare const Select: