import { SvelteComponentTyped } from "svelte"; import type { IconProps } from '../types.js'; declare const __propDef: { props: IconProps; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type BrandChromeProps = typeof __propDef.props; export type BrandChromeEvents = typeof __propDef.events; export type BrandChromeSlots = typeof __propDef.slots; export default class BrandChrome extends SvelteComponentTyped { } export {};