export type ClassMethodDecoratorContextType = {
    kind: 'method';
    name: string | symbol;
    access: {
        get(object: unknown): unknown;
    };
    static: boolean;
    private: boolean;
    addInitializer(initializer: () => void): void;
};
export declare function PricingAware(featureName: string): (target: any, context: ClassMethodDecoratorContextType) => (this: any, ...args: any[]) => any;
