import React from "react"; type CheckboxSvgProps = { indeterminate?: boolean; }; declare const CheckboxSvg: ({ indeterminate }: CheckboxSvgProps) => React.JSX.Element; export default CheckboxSvg;