import React from "react";
export interface IndeterminateCheckboxProps extends React.HTMLProps<HTMLInputElement> {
    indeterminate?: boolean;
}
export declare function IndeterminateCheckbox(props: IndeterminateCheckboxProps): import("react/jsx-runtime").JSX.Element;
