import { GlideRecord } from "../types/GlideRecord"; export declare class EntrySetBuilder { bidirectional(biDirectional?: boolean): EntrySetBuilder; build(): GlideRecord; discrete(discrete?: boolean): EntrySetBuilder; getErrors(): Array; hasErrors(): boolean; name(name?: string): EntrySetBuilder; static withName(name?: string): EntrySetBuilder; static withSysId(sysId?: string): EntrySetBuilder; constructor(); }