import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { component: Promise SvelteComponentTyped>; innerProps?: any; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type DynamicComponentProps = typeof __propDef.props; export declare type DynamicComponentEvents = typeof __propDef.events; export declare type DynamicComponentSlots = typeof __propDef.slots; export default class DynamicComponent extends SvelteComponentTyped { } export {};