import * as React from "react"; import { ControlProps } from "../typings/Control"; declare function Control(props: ControlProps): JSX.Element; interface ControlViewProps { label: React.ReactNode; checked?: boolean; type: "radio" | "checkbox"; disabled?: boolean; iconClassName?: string; indeterminate?: boolean; } export declare const ControlView: ({ checked, label, type, disabled, iconClassName, indeterminate }: ControlViewProps) => JSX.Element; export default Control;