export declare class BasePineconeError extends Error {
    /** The underlying error, if any. */
    cause?: Error;
    constructor(message?: string, cause?: Error);
}
