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