import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; width?: string; height?: string; viewbox?: string; fill?: string; fillrule?: svelte.JSX.SVGAttributes; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type VouchGraphicProps = typeof __propDef.props; export type VouchGraphicEvents = typeof __propDef.events; export type VouchGraphicSlots = typeof __propDef.slots; export default class VouchGraphic extends SvelteComponentTyped { } export {};