import React from "react"; import type LabelProps from "./private/types/LabelProps"; declare const InsetInput: React.ForwardRefExoticComponent & { className?: string | undefined; error?: boolean | undefined; type?: "number" | "button" | "search" | "time" | "image" | "text" | "hidden" | "color" | "checkbox" | "radio" | (string & {}) | "submit" | "reset" | "tel" | "url" | "email" | "password" | "date" | "datetime-local" | "month" | "range" | "week" | undefined; isRtl?: boolean | undefined; isLabel?: boolean | undefined; } & React.RefAttributes> & { Label: ({ children, className }: LabelProps) => React.JSX.Element; }; export default InsetInput; //# sourceMappingURL=InsetInput.d.ts.map