import * as pulumi from "@pulumi/pulumi";
/**
 * Get a list of all policy packs for an organization.
 */
export declare function getPolicyPacks(args: GetPolicyPacksArgs, opts?: pulumi.InvokeOptions): Promise<GetPolicyPacksResult>;
export interface GetPolicyPacksArgs {
    /**
     * The name of the Pulumi organization.
     */
    organizationName: string;
}
export interface GetPolicyPacksResult {
    /**
     * List of policy packs in the organization.
     */
    readonly policyPacks: {
        [key: string]: string;
    }[];
}
/**
 * Get a list of all policy packs for an organization.
 */
export declare function getPolicyPacksOutput(args: GetPolicyPacksOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPolicyPacksResult>;
export interface GetPolicyPacksOutputArgs {
    /**
     * The name of the Pulumi organization.
     */
    organizationName: pulumi.Input<string>;
}
//# sourceMappingURL=getPolicyPacks.d.ts.map