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