import { ReactNode } from 'react'; import type { Styles } from '@cleartrip/ct-design-types'; import type { TypographyVariantType } from '@cleartrip/ct-design-typography'; export interface IRadio { id: string; checked?: boolean; disabled?: boolean; onChange?: () => void; label: ReactNode | string; labelVariant?: TypographyVariantType; labelCTA?: ReactNode; styleConfig?: { root?: Styles[]; radioBtn?: Styles[]; labelContainer?: Styles[]; }; rootProps?: Record; } export type RadioProps = IRadio; //# sourceMappingURL=type.d.ts.map