import { CoreAppService } from './app-service-app';
import { DmsApplicationService } from './application-context-service';
export type DocumentSerie = {
    documentType: number;
    current: number;
    max: number;
    mask: string;
};
export declare class DocumentSeriesService extends CoreAppService {
    private series;
    constructor(dms: DmsApplicationService);
    private composeFullSerieNo;
    private initializeSerie;
    private load;
    private save;
    private findSerie;
    getCurrentNumber(documentType: number): Promise<string>;
    getNextNumber(documentType: number): Promise<string>;
    incrementNumber(documentType: number): Promise<string>;
    synchronize(userName: string): Promise<void>;
}
