/** @typedef {typeof __propDef.props} PaneWithPanelProps */ /** @typedef {typeof __propDef.events} PaneWithPanelEvents */ /** @typedef {typeof __propDef.slots} PaneWithPanelSlots */ export default class PaneWithPanel extends SvelteComponentTyped<{ panel: string; pos?: import("@rich_harris/svelte-split-pane/dist/types").Length | undefined; }, { [evt: string]: CustomEvent; }, { main: {}; 'panel-header': {}; 'panel-body': {}; }> { } export type PaneWithPanelProps = typeof __propDef.props; export type PaneWithPanelEvents = typeof __propDef.events; export type PaneWithPanelSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { panel: string; pos?: import("@rich_harris/svelte-split-pane/dist/types").Length | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { main: {}; 'panel-header': {}; 'panel-body': {}; }; }; export {};