import { NodeKind } from './node-kind'; import { Node } from './node'; export declare class Callout implements Node { readonly children: Node[]; readonly text: string; readonly kind = NodeKind.CalloutItem; constructor(text: string); toMarkdown(): string; }