import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; header?: string | undefined; toggleable?: boolean | undefined; open?: boolean | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { header: {}; headerActions: {}; default: {}; footer: {}; }; }; export declare type PanelProps = typeof __propDef.props; export declare type PanelEvents = typeof __propDef.events; export declare type PanelSlots = typeof __propDef.slots; export default class Panel extends SvelteComponentTyped { } export {};