import React from "react";
export interface CheckboxSVGProps extends React.SVGProps<SVGSVGElement> {
    isChecked?: boolean;
}
export declare const CheckboxIcon: ({ isChecked, ...props }: CheckboxSVGProps) => JSX.Element;
