import { SvelteComponent } from "svelte"; declare const __propDef: { props: { class?: string | undefined; name: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type BrandIconProps = typeof __propDef.props; export type BrandIconEvents = typeof __propDef.events; export type BrandIconSlots = typeof __propDef.slots; export default class BrandIcon extends SvelteComponent { } export {};