import { EventBus, Customer, OrderService, TransactionalConnection } from '@vendure/core';
import { OnApplicationBootstrap } from '@nestjs/common';
import { SchedulerRegistry } from '@nestjs/schedule';
import './api/types';
export declare class VendurePluginPaymentTerms implements OnApplicationBootstrap {
    private eventBus;
    private conn;
    private orderService;
    private schedulerRegistry;
    constructor(eventBus: EventBus, conn: TransactionalConnection, orderService: OrderService, schedulerRegistry: SchedulerRegistry);
    onApplicationBootstrap(): void;
    getCronJobNameForCustomer(customer: Customer): string;
}
