export type Predicate<T> = (this: T, ...args: any[]) => boolean;
export declare function shouldCall<T>(predicate: Predicate<T>): MethodDecorator;
