import { ClassValue } from "clsx"; import { InputHTMLAttributes } from "react"; interface Props { /** * Additional class names to apply to the spinner. */ className: ClassValue; /** * Color of the button * @default "neutral" */ color: "primary" | "neutral" | "error" | "warning" | "success"; /** * Size of the button (this can be overridden by className) * @default "dense" */ size: "dense" | "large"; /** * Floating label tex */ label: string; /** * Options for select inputs */ options: Array; /** * Whether the input is invalid * @default false */ invalid: boolean; } interface Option { /** * The value of the option */ value: string; /** * The label of the option */ disabled?: boolean; } export declare function InputField({ color, className, size, label, options: ox, invalid, ...props }: Omit, "size"> & Partial): JSX.Element; export {};