import { CardGroupSelectionMode } from '@viasat/beam-shared/components/card'; /** * Maps selection mode to the underlying input/indicator type. */ export declare function getInputType(selectionMode?: CardGroupSelectionMode): 'radio' | 'checkbox'; export declare function normalizeToSingle(input?: string | string[]): string | undefined; export declare function normalizeToArray(input?: string | string[]): string[];