/** @typedef {typeof __propDef.props} BrandLogoProps */ /** @typedef {typeof __propDef.events} BrandLogoEvents */ /** @typedef {typeof __propDef.slots} BrandLogoSlots */ export default class BrandLogo extends SvelteComponentTyped<{ properties: any; settings: any; }, { [evt: string]: CustomEvent; }, {}> { } export type BrandLogoProps = typeof __propDef.props; export type BrandLogoEvents = typeof __propDef.events; export type BrandLogoSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { properties: any; settings: any; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};