import * as React from "react"; //#region src/components/input.d.ts export type InputProps = React.ComponentProps<'input'>; export declare const labelVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string; declare function Input({ className, type, ref, ...props }: InputProps): React.JSX.Element; //#endregion export { Input };