import { type AdditionalDataHolder, type Parsable, type ParseNode, type SerializationWriter } from '@microsoft/kiota-abstractions';
export interface Count extends AdditionalDataHolder, Parsable {
    /**
     * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
     */
    additionalData?: Record<string, unknown>;
    /**
     * Count of Enterprise Devices that are allowed to be managed.
     */
    enterpriseDeviceCount?: number | null;
    /**
     * Count of Enterprise Interfaces that are allowed to be managed.
     */
    enterpriseInterfaceCount?: number | null;
    /**
     * Count of Enterprise Intermediaries that are allowed to be managed.
     */
    enterpriseIntermediaryCount?: number | null;
    /**
     * Count of Enterprise Users that are allowed to be managed.
     */
    enterpriseUserCount?: number | null;
    /**
     * Count of Privileged Devices (PAW) that are allowed to be managed.
     */
    privilegedDeviceCount?: number | null;
    /**
     * Count of Privileged Interfaces that are allowed to be managed.
     */
    privilegedInterfaceCount?: number | null;
    /**
     * Count of Privileged Intermediaries that are allowed to be managed.
     */
    privilegedIntermediaryCount?: number | null;
    /**
     * Count of Privileged Users that are allowed to be managed.
     */
    privilegedUserCount?: number | null;
    /**
     * Count of Specialized Devices that are allowed to be managed.
     */
    specializedDeviceCount?: number | null;
    /**
     * Count of Specialized Interfaces that are allowed to be managed.
     */
    specializedInterfaceCount?: number | null;
    /**
     * Count of Specialized Intermediaries that are allowed to be managed.
     */
    specializedIntermediaryCount?: number | null;
    /**
     * Count of Specialized Users that are allowed to be managed.
     */
    specializedUserCount?: number | null;
}
/**
 * Creates a new instance of the appropriate class based on discriminator value
 * @param parseNode The parse node to use to read the discriminator value and create the object
 * @returns {Count}
 */
export declare function createCountFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
/**
 * The deserialization information for the current model
 * @returns {Record<string, (node: ParseNode) => void>}
 */
export declare function deserializeIntoCount(count?: Partial<Count> | undefined): Record<string, (node: ParseNode) => void>;
/**
 * Serializes information the current object
 * @param writer Serialization writer to use to serialize this model
 */
export declare function serializeCount(writer: SerializationWriter, count?: Partial<Count> | undefined | null): void;
