import { SourceFile, Tree } from "../tree"; export interface PlainText extends SourceFile { readonly kind: typeof PlainText.Kind.PlainText; readonly text: string; readonly snippets: PlainText.Snippet[]; } export declare namespace PlainText { const Kind: { readonly PlainText: "org.openrewrite.text.PlainText"; readonly Snippet: "org.openrewrite.text.PlainText$Snippet"; }; interface Snippet extends Tree { readonly kind: typeof PlainText.Kind.Snippet; readonly text: string; } } export declare function isPlainText(tree: any): tree is PlainText; //# sourceMappingURL=tree.d.ts.map