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