import { ComponentPropsWithoutRef } from 'react'; import { Select as UiSelect, SelectGroup as UiSelectGroup, SelectItem as UiSelectItem, SelectSeparator } from '../ui/select'; export interface SelectProps extends ComponentPropsWithoutRef { placeholder?: React.ReactNode; className?: string; style?: React.CSSProperties; contentClassName?: string; contentStyle?: React.CSSProperties; } export interface SelectGroupProps extends ComponentPropsWithoutRef { label?: React.ReactNode; } export interface SelectItemProps extends ComponentPropsWithoutRef { } export interface SelectSeparatorProps extends ComponentPropsWithoutRef { } declare const _Select: import("react").ForwardRefExoticComponent>; export declare const Select: typeof _Select & { Group: typeof SelectGroup; Item: typeof SelectItem; Separator: typeof SelectSeparator; }; declare function SelectGroup(props: SelectGroupProps): import("react/jsx-runtime").JSX.Element; declare function SelectItem(props: SelectItemProps): import("react/jsx-runtime").JSX.Element; export {};