import type { FC, HTMLAttributes } from 'react';
import type { CheckboxCheckedState } from '@ark-ui/react/checkbox';
import type { TestableProps } from '../../utils/testId';
type CheckmarkNativeProps = HTMLAttributes;
interface CheckmarkBaseProps {
checkedState?: CheckboxCheckedState;
}
type CheckmarkProps = CheckmarkNativeProps & CheckmarkBaseProps & TestableProps;
export declare const Checkmark: FC;
export {};