import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { /** * Size of the logo image, everything else will scale to this size * * @default 32 */ size?: number; /** * Source url for the avatar image * * @default */ src?: string; /** * An alternative text description of the image * @default Vouch brand logo image */ alt?: string; /** * Name of the person that this persona is referring to * * @default */ name?: string; /** * Company name that the person works for * * @default */ companyname?: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type VouchPersonaProps = typeof __propDef.props; export type VouchPersonaEvents = typeof __propDef.events; export type VouchPersonaSlots = typeof __propDef.slots; export default class VouchPersona extends SvelteComponentTyped { } export {};