import React from 'react'; import { PropsOf } from '@codeleap/types'; import { StylesOf } from '../../types'; import { Text } from '../Text'; import { TouchableProps } from '../Touchable'; import { SegmentedControlComposition } from './styles'; import { AppIcon } from '@codeleap/styles'; export type SegmentedControlOptionProps = Omit & { selected?: boolean; label: string; value: string; variantStyles?: StylesOf; textProps?: Omit, 'key'>; icon?: AppIcon; badge?: React.ReactNode; debugName?: string; }; export declare const SegmentedControlOption: (props: SegmentedControlOptionProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Option.d.ts.map