import * as React from "react"; interface CheckboxWithDescriptionProps { id: string; checked: boolean; onCheckedChange: (checked: boolean) => void; title: string; description: string; disabled?: boolean; className?: string; } declare const CheckboxWithDescription: React.ForwardRefExoticComponent>; export { CheckboxWithDescription }; export type { CheckboxWithDescriptionProps }; //# sourceMappingURL=checkbox-with-description.d.ts.map