import { ReactNode } from 'react'; export type Props = { label: ReactNode; value: T; currency?: string; note?: ReactNode; secondary?: ReactNode; icon?: ReactNode; /** @deprecated */ classNames?: Record; selected?: boolean; testId?: string; }; declare function Option({ label, currency, note, secondary, icon, selected, testId, }: Props): import("react").JSX.Element; export default Option; //# sourceMappingURL=Option.d.ts.map