interface Props {
    value?: number;
    min?: number;
    max?: number;
    showValue?: boolean;
    showLabel?: boolean;
    label?: string;
    description?: string;
    size?: 'sm' | 'md' | 'lg';
    variant?: 'default' | 'gradient' | 'striped' | 'pulse';
    color?: 'primary' | 'success' | 'warning' | 'danger' | 'info' | string;
    trackColor?: string;
    height?: number | string;
    borderRadius?: number | string;
    animationDuration?: number;
    animationType?: 'ease' | 'bounce' | 'elastic';
    indeterminate?: boolean;
    indeterminateSpeed?: number;
    showAnimation?: boolean;
}
declare const AnimatedProgress: import("svelte").Component<Props, {}, "">;
type AnimatedProgress = ReturnType<typeof AnimatedProgress>;
export default AnimatedProgress;
//# sourceMappingURL=AnimatedProgress.svelte.d.ts.map