import { Stripe } from '../../stripe.core.js';
import { DeletedObject } from './DeletedObject.js';
import { Billing } from './Billing/index.js';
import { Core } from './Core/index.js';
export declare class V2 {
    private readonly stripe;
    billing: Billing;
    core: Core;
    constructor(stripe: Stripe);
}
export declare namespace V2 {
    export { DeletedObject };
    export { Billing };
    export { Core };
}
