import * as React from "react"; import type { CheckboxProps as MuiCheckboxProps } from "@mui/material"; export interface CheckboxProps extends Pick { } declare const Checkbox: React.FC; export interface CheckboxPanelProps { header?: string; options: { [option: string]: boolean; }; onChange: (state: { [option: string]: boolean; }) => void; } declare const CheckboxPanel: React.FC; export { CheckboxPanel, Checkbox }; //# sourceMappingURL=checkbox.d.ts.map