import type { HTMLAttributes } from '../../../internal/html-attributes.js';
import type { PropsWithElement } from '../../../internal/props-with-element.js';
import type { ItemProps } from '@zag-js/toggle-group';
export interface ToggleGroupItemProps extends ItemProps, PropsWithElement<'button'>, HTMLAttributes<'button', 'value' | 'disabled'> {
}
declare const Item: import("svelte").Component;
type Item = ReturnType;
export default Item;