export declare type TGate = (user: object, resource: TResource) => boolean; export declare type TResource = { new (...args: any[]): any; } | { _className: string; } | string;