import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: {}; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type InplaceDisplayProps = typeof __propDef.props; export declare type InplaceDisplayEvents = typeof __propDef.events; export declare type InplaceDisplaySlots = typeof __propDef.slots; export default class InplaceDisplay extends SvelteComponentTyped { } export {};