import { FC } from 'react'; import { CardProps } from '../Card'; import { CheckboxProps } from '../Checkbox'; import { CheckboxCardOrientation, CheckboxVariant } from './types'; export interface CheckboxCardProps extends Omit, Pick { /** * Defines the layout direction of the card content. */ orientation?: CheckboxCardOrientation; /** * Variant that controls the visual style of the checkbox card. * Typically used to switch between brand or neutral themes. */ variant?: CheckboxVariant; } /** A Checkbox Card is a UI component that combines a selectable checkbox with a card layout, allowing users to choose an option while displaying additional information in a structured format. */ export declare const CheckboxCard: FC;