/**
 * Pinecone Data Plane API
 * Pinecone is a vector database that makes it easy to search and retrieve billions of high-dimensional vectors.
 *
 * The version of the OpenAPI document: 2025-04
 * Contact: support@pinecone.io
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * A description of a namespace, including the name and record count.
 * @export
 * @interface NamespaceDescription
 */
export interface NamespaceDescription {
    /**
     * The name of the namespace.
     * @type {string}
     * @memberof NamespaceDescription
     */
    name?: string;
    /**
     * The total amount of records within the namespace.
     * @type {number}
     * @memberof NamespaceDescription
     */
    recordCount?: number;
}
/**
 * Check if a given object implements the NamespaceDescription interface.
 */
export declare function instanceOfNamespaceDescription(value: object): boolean;
export declare function NamespaceDescriptionFromJSON(json: any): NamespaceDescription;
export declare function NamespaceDescriptionFromJSONTyped(json: any, ignoreDiscriminator: boolean): NamespaceDescription;
export declare function NamespaceDescriptionToJSON(value?: NamespaceDescription | null): any;
