import { KeyPair } from '@microsoft/dev-tunnels-ssh'; import { KeyFormatter } from './keyFormatter'; import { KeyData } from './keyData'; /** Provides import/export of the SEC1 key format. */ export declare class Sec1KeyFormatter implements KeyFormatter { private static readonly privateKeyType; import(keyData: KeyData): Promise; export(keyPair: KeyPair, includePrivate: boolean): Promise; decrypt(keyData: KeyData, passphrase: string | null): Promise; encrypt(keyData: KeyData, passphrase: string): Promise; private static exportECPrivate; private static importECPrivate; } //# sourceMappingURL=sec1KeyFormatter.d.ts.map