import { type CollectionItem, type SelectRootProps } from '@ark-ui/react/select'; import { type TestableProps } from '../../utils/testId'; type SelectNativeProps = Omit, 'positioning' | 'lazyMount' | 'unmountOnExit'>; export interface SelectBaseProps { loading?: boolean; } type SelectProps = SelectNativeProps & SelectBaseProps & TestableProps; export declare const Select: { ({ children, loading, disabled, "data-testid": testId, ...props }: SelectProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export {};