File size: 590 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
/// <reference types=".pnpm/[email protected]/node_modules/svelte" />
import { SvelteComponentTyped } from "svelte";
import type { PanelProps } from './types';
declare const __propDef: {
props: PanelProps;
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
type PanelProps_ = typeof __propDef.props;
export { PanelProps_ as PanelProps };
export type PanelEvents = typeof __propDef.events;
export type PanelSlots = typeof __propDef.slots;
export default class Panel extends SvelteComponentTyped<PanelProps_, PanelEvents, PanelSlots> {
}
|