/**
 * Use this decorator to check the static properties of a class
 *
 * Example: `@StaticImplements<ProtoObjectStaticMethods<User>>()`
 */
export declare const StaticImplements: <T>() => <U extends T>(constructor: U) => void;
