import { Observable } from "rxjs";
export declare class DialogImportFileConfigModel {
    downloadTemplateFunc?: () => void;
    importFunc?: (file: File | undefined) => Observable<any>;
    downloadErrorFile?: (errorImportExcelUrl: String) => void;
    confirmMsgKey: string;
    successMsgKey: string;
    errorMsgKey: string;
}
