export declare class DocumentVirtualRecord { constructor(node: Node, customerUpdateId: string); static of(xml: string, customerUpdateId: string): DocumentVirtualRecord; static of( xml: string, xpath: string, customerUpdateId: string ): DocumentVirtualRecord; getValue(name: string): string; getValueAsBoolean(name: string): boolean; getAction(): string; getTableName(): string; getPayload(): string; isValidField(name: string): boolean; }