import type { HTMLInputAttributes } from "svelte/elements";
interface Props extends HTMLInputAttributes {
color?: "tonal" | "primary" | "secondary" | "danger" | "success" | "warning" | "info";
variant?: "filled" | "outlined";
inputSize?: "sm" | "md" | "lg";
elevated?: boolean;
icon?: string;
iconPosition?: "left" | "right";
error?: boolean;
disabled?: boolean;
placeholder?: string;
}
declare const Input: import("svelte").Component;
type Input = ReturnType;
export default Input;