import type { HTMLAttributes } from '../../../internal/html-attributes.js'; import type { PropsWithElement } from '../../../internal/props-with-element.js'; import type { Props } from '@zag-js/progress'; export interface ProgressRootProps extends Omit, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> { } declare const Root: import("svelte").Component; type Root = ReturnType; export default Root;