import * as pulumi from "@pulumi/pulumi";
/**
 * Creates a new container registry. For more information, see
 * [the official documentation](https://cloud.yandex.com/docs/container-registry/concepts/registry)
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as yandex from "@pulumi/yandex";
 *
 * const defaultContainerRegistry = new yandex.ContainerRegistry("default", {
 *     folderId: "test_folder_id",
 *     labels: {
 *         "my-label": "my-label-value",
 *     },
 * });
 * ```
 *
 * ## Import
 *
 * A registry can be imported using the `id` of the resource, e.g.
 *
 * ```sh
 *  $ pulumi import yandex:index/containerRegistry:ContainerRegistry default registry_id
 * ```
 */
export declare class ContainerRegistry extends pulumi.CustomResource {
    /**
     * Get an existing ContainerRegistry resource's state with the given name, ID, and optional extra
     * properties used to qualify the lookup.
     *
     * @param name The _unique_ name of the resulting resource.
     * @param id The _unique_ provider ID of the resource to lookup.
     * @param state Any extra arguments used during the lookup.
     * @param opts Optional settings to control the behavior of the CustomResource.
     */
    static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ContainerRegistryState, opts?: pulumi.CustomResourceOptions): ContainerRegistry;
    /**
     * Returns true if the given object is an instance of ContainerRegistry.  This is designed to work even
     * when multiple copies of the Pulumi SDK have been loaded into the same process.
     */
    static isInstance(obj: any): obj is ContainerRegistry;
    /**
     * Creation timestamp of the registry.
     */
    readonly createdAt: pulumi.Output<string>;
    /**
     * Folder that the resource belongs to. If value is omitted, the default provider folder is used.
     */
    readonly folderId: pulumi.Output<string>;
    /**
     * A set of key/value label pairs to assign to the registry.
     */
    readonly labels: pulumi.Output<{
        [key: string]: string;
    } | undefined>;
    /**
     * A name of the registry.
     */
    readonly name: pulumi.Output<string>;
    /**
     * Status of the registry.
     */
    readonly status: pulumi.Output<string>;
    /**
     * Create a ContainerRegistry resource with the given unique name, arguments, and options.
     *
     * @param name The _unique_ name of the resource.
     * @param args The arguments to use to populate this resource's properties.
     * @param opts A bag of options that control this resource's behavior.
     */
    constructor(name: string, args?: ContainerRegistryArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering ContainerRegistry resources.
 */
export interface ContainerRegistryState {
    /**
     * Creation timestamp of the registry.
     */
    createdAt?: pulumi.Input<string>;
    /**
     * Folder that the resource belongs to. If value is omitted, the default provider folder is used.
     */
    folderId?: pulumi.Input<string>;
    /**
     * A set of key/value label pairs to assign to the registry.
     */
    labels?: pulumi.Input<{
        [key: string]: pulumi.Input<string>;
    }>;
    /**
     * A name of the registry.
     */
    name?: pulumi.Input<string>;
    /**
     * Status of the registry.
     */
    status?: pulumi.Input<string>;
}
/**
 * The set of arguments for constructing a ContainerRegistry resource.
 */
export interface ContainerRegistryArgs {
    /**
     * Folder that the resource belongs to. If value is omitted, the default provider folder is used.
     */
    folderId?: pulumi.Input<string>;
    /**
     * A set of key/value label pairs to assign to the registry.
     */
    labels?: pulumi.Input<{
        [key: string]: pulumi.Input<string>;
    }>;
    /**
     * A name of the registry.
     */
    name?: pulumi.Input<string>;
}
