import { Config, ConfigGetter } from './config';
import { PaymentModule } from './features/payment';
import { NotificationModule } from './features/notification';
export declare class CashBill {
    private config;
    payments: PaymentModule;
    notifications: NotificationModule;
    constructor(config: Config);
    protected getConfig: ConfigGetter;
}
