import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { volume?: number; }; events: { input: Event; } & { [evt: string]: CustomEvent; }; slots: {}; }; export type VouchVolumeSliderProps = typeof __propDef.props; export type VouchVolumeSliderEvents = typeof __propDef.events; export type VouchVolumeSliderSlots = typeof __propDef.slots; export default class VouchVolumeSlider extends SvelteComponentTyped { } export {};