import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { initEvent?: () => void; refreshStatus?: () => void; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type PanelLayoutProps = typeof __propDef.props; export type PanelLayoutEvents = typeof __propDef.events; export type PanelLayoutSlots = typeof __propDef.slots; export default class PanelLayout extends SvelteComponentTyped { get initEvent(): () => void; get refreshStatus(): () => void; } export {};