import { AccountingService } from './accounting.service';
export declare class AccountingController {
    private accountingService;
    constructor(accountingService: AccountingService);
    doAcount(body: {
        n: number;
        kind: number;
        ref: number;
    }): Promise<{
        success: boolean;
    } | {
        success: boolean;
        error: string;
    }>;
    unDoAcount(body: {
        n: number;
        kind: number;
        ref: number;
    }): Promise<{
        success: boolean;
    } | {
        success: boolean;
        error: string;
    }>;
}
