import React from "react"; type CheckboxInputProps = React.InputHTMLAttributes & { indeterminate?: boolean; children?: never; standalone?: boolean; /** * Reduces pseudo-element target-size. */ compact?: boolean; }; declare const CheckboxInput: React.ForwardRefExoticComponent & { indeterminate?: boolean; children?: never; standalone?: boolean; /** * Reduces pseudo-element target-size. */ compact?: boolean; } & React.RefAttributes>; export { CheckboxInput }; export type { CheckboxInputProps };