import { ChangeEvent, InputHTMLAttributes } from 'react'; export type CheckInteractionState = "default" | "hovered" | "focused" | "pressed"; export type CheckProps = Omit, "type" | "onChange"> & { onChange?: (event: ChangeEvent) => void; disableAnimation?: boolean; interactionState?: CheckInteractionState; indicatorClassName?: string; }; declare const _default: import('react').NamedExoticComponent, "type" | "onChange"> & { onChange?: (event: ChangeEvent) => void; disableAnimation?: boolean; interactionState?: CheckInteractionState; indicatorClassName?: string; } & import('react').RefAttributes>; export default _default;