import { ReactNode } from 'react'; import { VariantProps } from 'class-variance-authority'; export interface SelectOption { value: string; label: string; disabled?: boolean; } declare const selectTrigger: (props?: ({ variant?: "default" | "muted" | "ghost" | null | undefined; size?: "sm" | "md" | "lg" | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string; export type SelectProps = VariantProps & { options?: SelectOption[]; placeholder?: string; disabled?: boolean; error?: boolean; value?: string; defaultValue?: string; onChange?: (value: string) => void; className?: string; children?: ReactNode; }; export declare const Select: import('react').ForwardRefExoticComponent string> & { options?: SelectOption[]; placeholder?: string; disabled?: boolean; error?: boolean; value?: string; defaultValue?: string; onChange?: (value: string) => void; className?: string; children?: ReactNode; } & import('react').RefAttributes>; export {};