import { SvelteComponentTyped } from "svelte"; import type { StoryDef } from '../../ddl/stories'; export declare const story: StoryDef; declare const __propDef: { props: Record; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type SyntaxProps = typeof __propDef.props; export type SyntaxEvents = typeof __propDef.events; export type SyntaxSlots = typeof __propDef.slots; export default class Syntax extends SvelteComponentTyped { } export {};