import { GlideRecord } from "../types/GlideRecord"; export declare class OutboundEntryBuilder { build(): GlideRecord; discreteField(discreteField?: string): OutboundEntryBuilder; entrySet(entrySet?: GlideRecord): OutboundEntryBuilder; filter(filter?: string): OutboundEntryBuilder; getErrors(): Array; hasErrors(): boolean; includeAttachments(includeAttachments?: boolean): OutboundEntryBuilder; includedFields(includedFields?: string[]): OutboundEntryBuilder; tableName(table?: string): OutboundEntryBuilder; static withSysId(sysId?: string): OutboundEntryBuilder; static withTable( table?: string, entrySet?: GlideRecord ): OutboundEntryBuilder; constructor(); }