import { SvelteComponentTyped } from "svelte"; import type { MetaEntry } from 'datocms-structured-text-utils'; declare const __propDef: { props: { item?: string; meta?: MetaEntry[]; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type InlineProps = typeof __propDef.props; export declare type InlineEvents = typeof __propDef.events; export declare type InlineSlots = typeof __propDef.slots; export default class Inline extends SvelteComponentTyped { } export {};