import type { HTMLAttributes } from 'svelte/elements';
export interface CircularProgressProps extends HTMLAttributes {
value?: number;
max?: number;
indeterminate?: boolean;
fourColor?: boolean;
track?: boolean;
wavy?: boolean;
element?: HTMLDivElement;
}
export interface LinearProgressProps extends CircularProgressProps {
buffer?: number;
}