import * as pulumi from "@pulumi/pulumi";
/**
 * From the [official documentation](https://docs.netbox.dev/en/stable/features/ipam/#ip-ranges):
 *
 * > This model represents an arbitrary range of individual IPv4 or IPv6 addresses, inclusive of its starting and ending addresses. For instance, the range 192.0.2.10 to 192.0.2.20 has eleven members. (The total member count is available as the size property on an IPRange instance.) Like prefixes and IP addresses, each IP range may optionally be assigned to a VRF and/or tenant.
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as netbox from "@natzka-oss/pulumi-netbox";
 *
 * const custAProd = new netbox.ipam.IpRange("cust_a_prod", {
 *     startAddress: "10.0.0.1/24",
 *     endAddress: "10.0.0.50/24",
 *     tags: [
 *         "customer-a",
 *         "prod",
 *     ],
 * });
 * ```
 */
export declare class IpRange extends pulumi.CustomResource {
    /**
     * Get an existing IpRange 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?: IpRangeState, opts?: pulumi.CustomResourceOptions): IpRange;
    /**
     * Returns true if the given object is an instance of IpRange.  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 IpRange;
    readonly description: pulumi.Output<string | undefined>;
    readonly endAddress: pulumi.Output<string>;
    readonly roleId: pulumi.Output<number | undefined>;
    readonly startAddress: pulumi.Output<string>;
    /**
     * Valid values are `active`, `reserved` and `deprecated`. Defaults to `active`.
     */
    readonly status: pulumi.Output<string | undefined>;
    readonly tags: pulumi.Output<string[] | undefined>;
    readonly tenantId: pulumi.Output<number | undefined>;
    readonly vrfId: pulumi.Output<number | undefined>;
    /**
     * Create a IpRange 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: IpRangeArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering IpRange resources.
 */
export interface IpRangeState {
    description?: pulumi.Input<string>;
    endAddress?: pulumi.Input<string>;
    roleId?: pulumi.Input<number>;
    startAddress?: pulumi.Input<string>;
    /**
     * Valid values are `active`, `reserved` and `deprecated`. Defaults to `active`.
     */
    status?: pulumi.Input<string>;
    tags?: pulumi.Input<pulumi.Input<string>[]>;
    tenantId?: pulumi.Input<number>;
    vrfId?: pulumi.Input<number>;
}
/**
 * The set of arguments for constructing a IpRange resource.
 */
export interface IpRangeArgs {
    description?: pulumi.Input<string>;
    endAddress: pulumi.Input<string>;
    roleId?: pulumi.Input<number>;
    startAddress: pulumi.Input<string>;
    /**
     * Valid values are `active`, `reserved` and `deprecated`. Defaults to `active`.
     */
    status?: pulumi.Input<string>;
    tags?: pulumi.Input<pulumi.Input<string>[]>;
    tenantId?: pulumi.Input<number>;
    vrfId?: pulumi.Input<number>;
}
