import { PanelProps } from '@zag-js/splitter';
import { HTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
import { PolymorphicProps } from '../factory.js';
export interface SplitterPanelBaseProps extends PanelProps, PolymorphicProps {
}
export interface SplitterPanelProps extends SplitterPanelBaseProps, 
/**
 * @vue-ignore
 */
Omit<HTMLAttributes, 'id'> {
}
declare const _default: __VLS_WithTemplateSlots< DefineComponent<SplitterPanelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<SplitterPanelProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
    default?(_: {}): any;
}>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
