import { SwitchProps } from '../Switch'; export interface BooleanCardProps extends Omit { title: string; description?: React.ReactNode | string; onChange?: (value: boolean) => void; checked?: boolean; titleProps?: React.HTMLProps; descriptionProps?: React.HTMLProps; } export declare const BooleanCard: ({ title, description, onChange, checked, ...rest }: BooleanCardProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=boolean-card.d.ts.map