import React from "react"; interface IProps extends React.InputHTMLAttributes { error?: boolean; indeterminate?: boolean; } export declare const DSCheckbox: ({ indeterminate, type, ...rest }: IProps) => JSX.Element; export {};