import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; rounded?: boolean | undefined; size?: any; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type CircleProps = typeof __propDef.props; export declare type CircleEvents = typeof __propDef.events; export declare type CircleSlots = typeof __propDef.slots; export default class Circle extends SvelteComponentTyped { } export {};