import { SelectRoot, SelectContent, SelectAffix, SelectList, SelectEmpty, SelectOption, SelectClear } from './components'; export { useSelectContext } from './context'; export * from './interface'; export declare const Select: { Root: typeof SelectRoot; Input: ({ className, children }: import('./interface').SelectInputProps) => import("react").JSX.Element; MultiInputRoot: ({ className, children }: import('./interface').SelectInputProps) => import("react").JSX.Element; Affix: typeof SelectAffix; List: typeof SelectList; Option: typeof SelectOption; Content: typeof SelectContent; View: ({ id, style, className, placeholder, maxTagCount, children }: import('./interface').SelectViewProps) => import("react").JSX.Element; Empty: typeof SelectEmpty; Clear: typeof SelectClear; MultiTag: ({ renderTag }: import('./interface').SelectMultiTagProps) => import("react").JSX.Element; MultiInput: ({ className }: { className?: string; }) => import("react").JSX.Element; };