import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Provides a list of Hetzner Storage Box Types. * * See the [Storage Box Type API documentation](https://docs.hetzner.cloud/reference/hetzner#storage-box-types) for more details. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as hcloud from "@pulumi/hcloud"; * * const all = hcloud.getStorageBoxTypes({}); * ``` */ export declare function getStorageBoxTypes(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getStorageBoxTypes. */ export interface GetStorageBoxTypesResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly storageBoxTypes: outputs.GetStorageBoxTypesStorageBoxType[]; } /** * Provides a list of Hetzner Storage Box Types. * * See the [Storage Box Type API documentation](https://docs.hetzner.cloud/reference/hetzner#storage-box-types) for more details. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as hcloud from "@pulumi/hcloud"; * * const all = hcloud.getStorageBoxTypes({}); * ``` */ export declare function getStorageBoxTypesOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output;