/** Information to create a new SSH Keypair */
export interface SshKeyCreate {
    /** SSH key name */
    name: string;
    /** SSH public key */
    publicKey: string;
}
//# sourceMappingURL=SshKeyCreate.d.ts.map