import { Key } from 'react-aria-components'; import { ComponentSize } from '../../atoms/types'; export declare const selectionGroupVariants: (props?: ({ variant?: "default" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export type SelectionGroupProps = { children: React.ReactNode; onChange?: (value: SelectionGroupValue) => void; defaultValue?: Key | Key[]; isMultiSelect?: boolean; isDisabled?: boolean; isReadOnly?: boolean; } & ComponentSize; export type SelectionGroupValue = Key | (Key | undefined)[] | undefined; //# sourceMappingURL=types.d.ts.map