import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { prevdisabled?: boolean; nextdisabled?: boolean; onprevclick?: () => void | undefined; onnextclick?: () => void | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type VouchEmbedNavigationControlsProps = typeof __propDef.props; export type VouchEmbedNavigationControlsEvents = typeof __propDef.events; export type VouchEmbedNavigationControlsSlots = typeof __propDef.slots; export default class VouchEmbedNavigationControls extends SvelteComponentTyped { } export {};