import { KeyPair } from '@microsoft/dev-tunnels-ssh'; import { KeyFormatter } from './keyFormatter'; import { KeyData } from './keyData'; /** Provides import/export of the SSH public key format. */ export declare class PublicKeyFormatter implements KeyFormatter { import(keyData: KeyData): Promise; export(keyPair: KeyPair, includePrivate: boolean): Promise; decrypt(keyData: KeyData, passphrase: string | null): Promise; encrypt(keyData: KeyData, passphrase: string): Promise; } //# sourceMappingURL=publicKeyFormatter.d.ts.map