import type { RangeProps } from "../..";
/**
 * [Go to docs](https://flowbite-svelte.com/)
 * ## Type
 * [RangeProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L934)
 * ## Props
 * @prop value = $bindable()
 * @prop appearance = "none"
 * @prop color = "blue"
 * @prop size = "md"
 * @prop inputClass
 * @prop class: className
 * @prop ...restProps
 */
declare const Range: import("svelte").Component<RangeProps, {}, "value">;
type Range = ReturnType<typeof Range>;
export default Range;
