export declare function toX059(certificate: string): string; export declare function toPEM(certificate: string): string; export interface Certificate { certificate: string; key: string; notAfter: Date; algorithm: 'sha256' | 'sha512'; } export declare function getNonExpired(certificates: Certificate[]): Certificate;