import type { PanelProps } from '@zag-js/splitter';
import type { Merge } from 'type-fest';
import type { HtmlIngredientProps } from '../types.js';
export interface SplitterPanelProps extends Merge<HtmlIngredientProps<'div', HTMLDivElement>, PanelProps> {
}
declare const SplitterPanel: import("svelte").Component<SplitterPanelProps, {}, "ref">;
type SplitterPanel = ReturnType<typeof SplitterPanel>;
export default SplitterPanel;
