/** Customer public SSH key, can be used for rescue netboot or server access after reinstallation */
export interface SshKey {
    /** ASCII encoded public SSH key */
    key: string;
    /** Name of this public SSH key */
    keyName: string;
}
//# sourceMappingURL=SshKey.d.ts.map