import { ChangeEvent, FocusEvent, ReactNode } from "react"; interface RawCheckboxOrRadioProps { type: "radio" | "checkbox"; name: string; value: string; checked: boolean; disabled: boolean; "aria-label"?: string; "aria-labelledby"?: string; onChange?(checked: ChangeEvent): void; onFocus?(checked: FocusEvent): void; onBlur?(checked: FocusEvent): void; children: ReactNode; } export declare function RawCheckboxOrRadio({ type, name, value, checked, disabled, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledBy, onChange, onFocus, onBlur, children, }: RawCheckboxOrRadioProps): import("react").JSX.Element; export {};