export interface IClass { new (...args: any[]): any; [p: string]: any; } export declare type TMethod = (...args: any[]) => any; export declare type TObject = Record; export interface IQueryKeys { allowed: any[]; }