/** vps.rebuild.post */
export interface Post {
    /** If asked, the installation password will NOT be sent (only if sshKey defined) */
    doNotSendPassword: boolean;
    /** Id of the vps.Image fetched in /images list */
    imageId: string;
    /** If asked, RTM will be installed on your VPS */
    installRTM: boolean;
    /** Bash script run once on first boot after reinstall */
    postInstallScript: string;
    /** Public SSH key to pre-install on your VPS */
    publicSshKey: string;
    /** SSH key name to pre-install on your VPS (name from /me/sshKey) */
    sshKey: string;
}
//# sourceMappingURL=Post.d.ts.map