import React, { ReactNode } from 'react'; export type AriaRoleRadioGroup = 'radiogroup'; export interface PromoCardGroupProps { /** * Optional class name(s) to add to the group container. */ className?: string; /** * The PromoCard components to display inside the group. */ children: ReactNode; /** * The default checked for the group. */ defaultChecked?: string; /** * Optional ID to add to the group container. */ id?: string; /** * Whether the group is disabled or not. */ isDisabled?: boolean; /** * Optional label to display above the group. */ label?: string; /** * Optional function to call when the group value changes. */ onChange?: (value: string) => void; /** * Optional ID to add to the group container for testing purposes. */ testId?: string; } declare const _default: React.NamedExoticComponent; export default _default; //# sourceMappingURL=PromoCardGroup.d.ts.map