import { pems } from "./generate509"; import { SigningStargateClient } from "@cosmjs/stargate"; export { pems }; export declare function broadcastCertificate(csr: string, publicKey: string, owner: string, client: SigningStargateClient): Promise; export declare function createCertificate(bech32Address: string): Promise<{ csr: string; privateKey: string; publicKey: string; }>; export declare function revokeCertificate(owner: string, serial: string, client: SigningStargateClient): Promise;