import { SvelteComponentTyped } from "svelte"; import type { StructuredTextGraphQlResponse } from 'datocms-structured-text-to-html-string'; declare const __propDef: { props: { data?: StructuredTextGraphQlResponse | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type SimpleStructuredTextProps = typeof __propDef.props; export declare type SimpleStructuredTextEvents = typeof __propDef.events; export declare type SimpleStructuredTextSlots = typeof __propDef.slots; export default class SimpleStructuredText extends SvelteComponentTyped { } export {};