import * as pulumi from "@pulumi/pulumi";
/**
 * > **Deprecated:** Use `proxmoxve.acme.getAccounts` instead. This data source will be removed in v1.0.
 *
 * Retrieves the list of ACME accounts.
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as proxmoxve from "@muhlba91/pulumi-proxmoxve";
 *
 * const example = proxmoxve.acme.getAccountsLegacy({});
 * export const dataProxmoxVirtualEnvironmentAcmeAccounts = example.then(example => example.accounts);
 * ```
 */
export declare function getAccountsLegacy(opts?: pulumi.InvokeOptions): Promise<GetAccountsLegacyResult>;
/**
 * A collection of values returned by getAccountsLegacy.
 */
export interface GetAccountsLegacyResult {
    /**
     * The identifiers of the ACME accounts.
     */
    readonly accounts: string[];
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
}
/**
 * > **Deprecated:** Use `proxmoxve.acme.getAccounts` instead. This data source will be removed in v1.0.
 *
 * Retrieves the list of ACME accounts.
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as proxmoxve from "@muhlba91/pulumi-proxmoxve";
 *
 * const example = proxmoxve.acme.getAccountsLegacy({});
 * export const dataProxmoxVirtualEnvironmentAcmeAccounts = example.then(example => example.accounts);
 * ```
 */
export declare function getAccountsLegacyOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAccountsLegacyResult>;
//# sourceMappingURL=getAccountsLegacy.d.ts.map