import type { Customer } from "../types/customerVault";
export declare class CustomerVault {
    url: string;
    org: string;
    apikey: string;
    constructor(url: string, org: string, apikey: string);
    add(customer: Customer): Promise<{
        response: null;
        status: number;
        message: string;
    } | {
        response: any;
        status: number;
        message?: undefined;
    }>;
}
