import type { HTMLInputAttributes } from "svelte/elements";
import type { IconifyIcon } from "@iconify/types";
type $$ComponentProps = {
value: number;
min?: number;
max?: number;
step?: number | "any";
disabled?: boolean;
showValue?: boolean;
size?: "xs" | "s" | "m" | "l" | "xl";
leadingIcon?: IconifyIcon;
trailingIcon?: IconifyIcon;
stops?: boolean;
endStops?: boolean;
vertical?: boolean;
format?: (n: number) => string;
} & Omit;
declare const Slider: import("svelte").Component<$$ComponentProps, {}, "value">;
type Slider = ReturnType;
export default Slider;