import { SvelteComponentTyped } from "svelte"; import type { ImgLoading } from './vouch-brand-logo'; declare const __propDef: { props: { [x: string]: any; size?: number; src?: string; alt?: string; loading?: ImgLoading; onsrcerror?: (event: any) => void; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type VouchBrandLogoProps = typeof __propDef.props; export type VouchBrandLogoEvents = typeof __propDef.events; export type VouchBrandLogoSlots = typeof __propDef.slots; export default class VouchBrandLogo extends SvelteComponentTyped { } export {};