import type { CSSProperties, ReactNode } from 'react'; type OptionProps = { value: string; children: ReactNode; 'data-testid'?: string; disabled?: boolean; tooltip?: string; style?: CSSProperties; }; export declare function Option({ value, children, 'data-testid': dataTestId, disabled, tooltip, style }: OptionProps): import("react").JSX.Element; export declare namespace Option { var displayName: string; } export {}; //# sourceMappingURL=Option.d.ts.map