import { DailyService } from './daily.service';
export declare class DailyController {
    private dailyService;
    constructor(dailyService: DailyService);
    getLast(kind: string, ref: string): Promise<{
        lastACDaily: number;
    }>;
    hold(kind: string, ref: string): Promise<{
        holdACDaily: number;
    }>;
    getLastMg(kind: string, ref: string): Promise<{
        lastMGDaily: number;
    }>;
    holdMg(kind: string, ref: string): Promise<{
        holdMGDaily: number;
    }>;
    getEntries(kind: string, ref: string, tranNo?: string): Promise<{
        usrId: string | null;
        kind: number;
        ref: number;
        tranNo: number;
        tranSq: number;
        dailyActNo: string | null;
        dbCr: string | null;
        dayMg: string | null;
        dayMt: string | null;
        dates: Date | null;
        dftrNo: number;
        fatKn: number;
        fatNbr: number;
        qnTtin: number;
        monVl: number;
        curMs: number;
        curDs: number;
        curMd: number;
        curDd: number;
        curMl: number;
        curDl: number;
        jrSwt: number;
        jrSource: number;
        dummy1: number;
        descrip: string | null;
    }[]>;
}
