import { PushService } from './push.service';
export declare class PushController {
    private readonly pushService;
    constructor(pushService: PushService);
    getVapidKey(): {
        key: string | undefined;
    };
    subscribe(req: any, body: any): Promise<{
        ok: boolean;
    }>;
}
