import * as pulumi from "@pulumi/pulumi"; export declare function getSshKeys(args: GetSshKeysArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSshKeys. */ export interface GetSshKeysArgs { id?: string; name: string; } /** * A collection of values returned by getSshKeys. */ export interface GetSshKeysResult { readonly body: string; readonly createdAt: string; readonly id: string; readonly name: string; } export declare function getSshKeysOutput(args: GetSshKeysOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSshKeys. */ export interface GetSshKeysOutputArgs { id?: pulumi.Input; name: pulumi.Input; }