/** * Properties for PaceBar. */ export interface PaceBarProps { /** * The value of the progress between 1 and 100. * Setting this to undefined will hide the progress bar. * Setting this to -1 to show an indeterminate indicator. */ value?: number; /** * Any additional classes to apply to the progress bar. * Ex. progress-accent */ class?: string; /** * Whether the progress bar should be rendered as an asymptotic progress bar. */ asymptotic?: boolean; /** * The easing value to use. Smaller is slower, larger is faster. Default is 0.004. */ easing?: number; /** * The interval in milliseconds to update the progress bar. Default is 10. */ intervalMs?: number; } export declare const PaceBar: import("@builder.io/qwik").Component;