import { CallExpressionShape, Plugin, type Record, type Source, StringShape, Shape, type Transform } from '@servicenow/sdk-build-core'; export declare class NowIncludeShape extends CallExpressionShape { private readonly includedText; constructor({ source, path, includedText }: { source: Source; path: string; includedText: string; }); getPath(): string; getValue(): string; toString(): StringShape; equals(other: unknown): boolean; static fromRecord(record: Record, text: string | Shape, transform: Transform): Promise; } export declare const NowIncludePlugin: Plugin;