export interface ISyncDataStatus {
    date: Date;
    external: number;
    internal: number;
}
declare function syncStatus(year: number, month: number): Promise<ISyncDataStatus[]>;
declare function sync(date: Date): Promise<unknown>;
declare const service: {
    syncStatus: typeof syncStatus;
    sync: typeof sync;
};
export default service;
