export interface ICertificates {
    privateKey: string;
    publicKey: string;
}
export declare function loadDefaultCertificates(): ICertificates;
