import type { JacksonOption, Storable } from '../typings'; export declare const init: (store: Storable, opts: JacksonOption) => Promise<{ publicKey: string; privateKey: string; }>; export declare const getDefaultCertificate: () => Promise<{ publicKey: string; privateKey: string; }>;