export default Progressbar; type Progressbar = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial>): void; }; /** * A progressbar widget. * @see https://w3c.github.io/aria/#progressbar */ declare const Progressbar: import("svelte").Component<{ /** * The `class` attribute on the wrapper element. */ class?: string | undefined; /** * The `aria-valuenow` attribute on the wrapper element. */ now: number; /** * The `aria-valuemin` attribute on the wrapper element. */ min?: number | undefined; /** * The `aria-valuemax` attribute on the wrapper element. */ max?: number | undefined; /** * The `aria-valuetext` attribute on the wrapper element. */ text?: string | undefined; /** * The `aria-label` attribute on the wrapper element. */ ariaLabel?: string | undefined; } & Record, {}, "">; type Props = { /** * The `class` attribute on the wrapper element. */ class?: string | undefined; /** * The `aria-valuenow` attribute on the wrapper element. */ now: number; /** * The `aria-valuemin` attribute on the wrapper element. */ min?: number | undefined; /** * The `aria-valuemax` attribute on the wrapper element. */ max?: number | undefined; /** * The `aria-valuetext` attribute on the wrapper element. */ text?: string | undefined; /** * The `aria-label` attribute on the wrapper element. */ ariaLabel?: string | undefined; };