import type { SelectProps } from './Select.types'; /** * Select component that wraps SelectComponent with SelectProvider. * Provides state management and context to SelectComponent. * * @param props - Props for configuring the Select component. * @returns JSX element that renders the SelectComponent wrapped with SelectProvider. */ declare const Select: (props: SelectProps) => JSX.Element; export default Select;