import type { FC, Ref } from 'react'; import { Checkbox as ArkUiCheckbox } from '@ark-ui/react/checkbox'; import { type TestableProps } from '../../utils/testId'; export interface CheckboxProps extends ArkUiCheckbox.RootProps, TestableProps { ref?: Ref; } export declare const Checkbox: FC;