import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { iconSize?: string | undefined; iconPath: string; circleClass?: string | undefined; ratioClass?: string | undefined; size?: string | undefined; bgColor?: string | undefined; iconColor?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type IconCircleProps = typeof __propDef.props; export type IconCircleEvents = typeof __propDef.events; export type IconCircleSlots = typeof __propDef.slots; export default class IconCircle extends SvelteComponentTyped { } export {};