export type DictionaryEntry = { table: string; entries: Array; }; export type predicate = (arg: any) => boolean; export declare const DEF_PREDICATE: (arg: any) => boolean;