import type { AllHTMLAttributes, ReactNode } from 'react'; export type CardGroupProps = { align?: 'start' | 'center' | 'end'; stretch?: boolean; wrap?: boolean; vertical?: boolean; small?: boolean; large?: boolean; children?: ReactNode; } & Omit, 'is' | 'wrap'>; declare const CardGroup: ({ align, children, stretch, vertical, wrap, ...props }: CardGroupProps) => import("react/jsx-runtime").JSX.Element; export default CardGroup; //# sourceMappingURL=CardGroup.d.ts.map