/** * Push Subcommands * * `quickback push generate-keys` — mints a fresh VAPID keypair (P-256) * in the right format for config.push.vapidPublicKey / vapidPrivateKey, * plus copy-pasteable wrangler secret commands. */ /** * Mint a fresh ECDH P-256 keypair and emit the public key as a 65-byte * uncompressed point and the private key as the 32-byte scalar — both * base64url-encoded, the format RFC 8292 VAPID expects. */ declare function generateVapidKeypair(): Promise<{ publicKey: string; privateKey: string; }>; declare function generateKeys(args: string[]): Promise; export { generateKeys as __generateKeysForTest, generateVapidKeypair as __generateVapidKeypairForTest }; export declare function push(args: string[]): Promise; //# sourceMappingURL=push.d.ts.map