import { KeyPair } from '@microsoft/dev-tunnels-ssh'; import { KeyFormatter } from './keyFormatter'; import { KeyData } from './keyData'; /** * Auto-detects the format of a key when importing, by trying all the available formatters. */ export declare class DefaultKeyFormatter implements KeyFormatter { export(keyPair: KeyPair, includePrivate: boolean): Promise; encrypt(keyData: KeyData, passphrase: string): Promise; import(keyData: KeyData): Promise; decrypt(keyData: KeyData, passphrase: string | null): Promise; } //# sourceMappingURL=defaultKeyFormatter.d.ts.map