import { default as React } from 'react'; import { CardGroupSelectionMode } from '@viasat/beam-shared/components/card'; export interface CardGroupContextValue { selectionMode?: CardGroupSelectionMode; showIndicator?: boolean; name?: string; disabled?: boolean; required?: boolean; readOnly?: boolean; value?: string | string[]; onItemSelect?: (value: string, event: React.ChangeEvent) => void; validationErrorsId?: string; isInvalid?: boolean; } export declare const CardGroupProvider: ({ children, value, }: { children: React.ReactNode; value: CardGroupContextValue; }) => import("react/jsx-runtime").JSX.Element; export declare const useCardGroupContext: () => CardGroupContextValue | undefined;