/**
 * @license
 * Copyright 2025 Sandlada & Kai Orion
 * SPDX-License-Identifier: MIT
 */
import type { ExtractPublicPropTypes } from 'vue';
export declare const props: {
    readonly max: {
        readonly type: NumberConstructor;
        readonly default: 1;
    };
    readonly indeterminate: {
        readonly type: BooleanConstructor;
        readonly default: false;
    };
    readonly value: {
        readonly type: NumberConstructor;
        readonly default: 0.25;
    };
};
export type TCircularProgressProps = ExtractPublicPropTypes<typeof props>;
export type TCircularProgressSlots = {};
//# sourceMappingURL=circular-progress.definition.d.ts.map