import { CommonProps } from "@trackunit/react-components"; type CheckIconProps = CommonProps; /** * The CheckIcon component is used by the checkbox to display the checked state. * * @param {CheckIconProps} props - The props for the CheckIcon component * @returns {ReactElement} CheckIcon component */ export declare const CheckIcon: ({ className, "data-testid": dataTestId }: CheckIconProps) => import("react/jsx-runtime").JSX.Element; export {};