import { RootProps } from './select-root'; import { ItemProps } from './select-item'; import { GroupProps } from './select-group'; import { ViewportProps } from './select-viewport'; import { ContentProps } from './select-content'; import { ValueProps } from './select-value'; import { TriggerProps } from './select-trigger'; import { PortalProps } from './select-portal'; import { IndicatorProps } from './select-indicator'; import { SeparatorProps } from './select-separator'; export declare const Select: import('react').ForwardRefExoticComponent string; label?: string; helperText?: string; placeholder?: string; errorText?: string; readonly?: boolean; value?: string; className?: string; frameClassName?: string; options: string[]; maxHeight?: string | number; } & import('react').RefAttributes> & { Indicator: import('react').ForwardRefExoticComponent, "ref"> & import('react').RefAttributes>; Item: import('react').ForwardRefExoticComponent, "ref"> & import('react').RefAttributes>; Group: import('react').ForwardRefExoticComponent, "ref"> & { options?: string[]; label?: string; } & import('react').RefAttributes>; Viewport: import('react').ForwardRefExoticComponent, "ref"> & import('react').RefAttributes>; Content: import('react').ForwardRefExoticComponent, "ref"> & import('react').RefAttributes>; Value: import('react').ForwardRefExoticComponent, "ref"> & { placeholder?: string; } & import('react').RefAttributes>; Trigger: import('react').ForwardRefExoticComponent, "ref"> & { validationState?: import('./select-root').ValidationState; readonly?: boolean; } & import('react').RefAttributes>; Portal: import('react').ForwardRefExoticComponent>; Separator: import('react').ForwardRefExoticComponent, "ref"> & import('react').RefAttributes>; }; export type SelectProps = { Root: RootProps; Indicator: IndicatorProps; Item: ItemProps; Group: GroupProps; Viewport: ViewportProps; Content: ContentProps; Value: ValueProps; Trigger: TriggerProps; Portal: PortalProps; Separator: SeparatorProps; };