import { SvelteComponentTyped } from "svelte";
import type { ColorProp } from '../../types/components';
import type { useAction } from '../../types/global';
declare const __propDef: {
    props: {
        [x: string]: any;
        size?: string;
        color?: ColorProp;
        percentage?: number | false;
        showPercentage?: boolean;
        noSpin?: boolean;
        desimalPoint?: number;
        useAction?: useAction<SVGElement>;
        class?: string | undefined;
    };
    events: {
        click: MouseEvent;
        dblclick: MouseEvent;
        mouseenter: MouseEvent;
        mouseleave: MouseEvent;
        mouseover: MouseEvent;
        focus: FocusEvent;
    } & {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export declare type CircularProgressProps = typeof __propDef.props;
export declare type CircularProgressEvents = typeof __propDef.events;
export declare type CircularProgressSlots = typeof __propDef.slots;
export default class CircularProgress extends SvelteComponentTyped<CircularProgressProps, CircularProgressEvents, CircularProgressSlots> {
}
export {};
