import * as pulumi from "@pulumi/pulumi";
import * as inputs from "./types/input";
import * as outputs from "./types/output";
/**
 * Get information about a Vultr SSH key. This data source provides the name, public SSH key, and the creation date for your Vultr SSH key.
 *
 * ## Example Usage
 *
 * Get the information for an SSH key by `name`:
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as vultr from "@pulumi/vultr";
 *
 * const mySshKey = vultr.getSshKey({
 *     filters: [{
 *         name: "name",
 *         values: ["my-ssh-key-name"],
 *     }],
 * });
 * ```
 */
export declare function getSshKey(args?: GetSshKeyArgs, opts?: pulumi.InvokeOptions): Promise<GetSshKeyResult>;
/**
 * A collection of arguments for invoking getSshKey.
 */
export interface GetSshKeyArgs {
    /**
     * Query parameters for finding SSH keys.
     */
    filters?: inputs.GetSshKeyFilter[];
}
/**
 * A collection of values returned by getSshKey.
 */
export interface GetSshKeyResult {
    /**
     * The date the SSH key was added to your Vultr account.
     */
    readonly dateCreated: string;
    readonly filters?: outputs.GetSshKeyFilter[];
    /**
     * The ID of the SSH key.
     */
    readonly id: string;
    /**
     * The name of the SSH key.
     */
    readonly name: string;
    /**
     * The public SSH key.
     */
    readonly sshKey: string;
}
/**
 * Get information about a Vultr SSH key. This data source provides the name, public SSH key, and the creation date for your Vultr SSH key.
 *
 * ## Example Usage
 *
 * Get the information for an SSH key by `name`:
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as vultr from "@pulumi/vultr";
 *
 * const mySshKey = vultr.getSshKey({
 *     filters: [{
 *         name: "name",
 *         values: ["my-ssh-key-name"],
 *     }],
 * });
 * ```
 */
export declare function getSshKeyOutput(args?: GetSshKeyOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetSshKeyResult>;
/**
 * A collection of arguments for invoking getSshKey.
 */
export interface GetSshKeyOutputArgs {
    /**
     * Query parameters for finding SSH keys.
     */
    filters?: pulumi.Input<pulumi.Input<inputs.GetSshKeyFilterArgs>[]>;
}
