import { ICreateBy, ICreateDate, IUpdateBy, IUpdateDate } from "../interface/iCreateBy"; import { IHash } from "../interface/iHash"; export declare function fillCreateByUpdateBy({ row, createBy, updateBy, createDate, updateDate }: { row: IHash; createBy?: ICreateBy; updateBy?: IUpdateBy; createDate?: ICreateDate; updateDate?: IUpdateDate; }): IHash;