import { ElementType, InputHTMLAttributes } from 'react';
import { PropsWithStyle } from '../../index.ts';
export interface SfCheckboxProps extends PropsWithStyle, InputHTMLAttributes {
invalid?: boolean;
wrapperAs?: ElementType | undefined;
wrapperClassName?: string;
'data-testid'?: string;
indeterminate?: boolean;
}