import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: {}; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type InplaceProps = typeof __propDef.props; export declare type InplaceEvents = typeof __propDef.events; export declare type InplaceSlots = typeof __propDef.slots; export default class Inplace extends SvelteComponentTyped { } export {};