import type { HTMLAttributes } from '../../../internal/html-attributes.js';
import type { PropsWithElement } from '../../../internal/props-with-element.js';
import type { ContentProps } from '@zag-js/tabs';
export interface TabsContentProps extends ContentProps, PropsWithElement<'div'>, HTMLAttributes<'div'> {
}
declare const Content: import("svelte").Component;
type Content = ReturnType;
export default Content;