import { PaginatedSelect } from './paginated'; import { Select as InnerSelect } from './select'; type CompoundedComponent = typeof InnerSelect & { Paginated: typeof PaginatedSelect; }; export declare const Select: CompoundedComponent & { Paginated: typeof PaginatedSelect; }; export type { SelectProps } from './select';