import type { HTMLAttributes } from '../../../internal/html-attributes.js'; import type { PropsWithElement } from '../../../internal/props-with-element.js'; export interface ProgressCircleProps extends PropsWithElement<'svg'>, HTMLAttributes<'svg'> { } declare const Circle: import("svelte").Component; type Circle = ReturnType; export default Circle;