import { NodeKind } from './node-kind'; import { Node } from './node'; export type BlockquotePrefix = '>'; export declare class BlockquoteItem implements Node { readonly children: Node[]; readonly prefix: string; readonly kind = NodeKind.BlockquoteItem; constructor(prefix: string, children: Node[]); toMarkdown(): string; static isValidPrefix(str: string): boolean; }