export interface CheckboxIconProps { /** * Ticked state */ checked?: boolean; /** * Partially ticked — drawn as a bar rather than a check */ indeterminate?: boolean; } /** * The box a Checkbox draws, replacing MUI's SVG icons: their shape is baked * into the SVG path, so it cannot be softened from the theme. */ declare const CheckboxIcon: ({ checked, indeterminate }: CheckboxIconProps) => import("@emotion/react/jsx-runtime").JSX.Element; export default CheckboxIcon;