import React from "react"; import { type CheckboxProps } from "../Form/Checkbox/Checkbox"; export type CheckboxCardProps = { label: string; labelHint?: string; readOnly?: boolean; renderContent?: (params: { isSelected: boolean; }) => React.ReactNode; } & Omit; export declare const CheckboxCard: React.ForwardRefExoticComponent<{ label: string; labelHint?: string; readOnly?: boolean; renderContent?: (params: { isSelected: boolean; }) => React.ReactNode; } & Omit & React.RefAttributes>;