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