import React from "react"; import { Indicator } from "../FeedbackIndicator/FeedbackIndicator"; import "./checkbox.scss"; export declare type CheckboxProps = JSX.IntrinsicElements["input"] & { /** Displays the checkbox inline */ inline?: boolean; /** Div wrapper props */ wrapperProps?: JSX.IntrinsicElements["div"]; /** Indicator for error, warning or success */ indicator?: Indicator; }; export declare const Checkbox: React.FC;