import React, { type OptionHTMLAttributes } from 'react'; export type OptionProps = OptionHTMLAttributes & { children: React.ReactNode; 'data-testid'?: string; }; declare function Option({ children, ...props }: OptionProps): JSX.Element; export default Option; //# sourceMappingURL=Option.d.ts.map