import { MixinTarget } from '@loopback/core'; import { Entity } from '@loopback/repository'; export declare const TzMixin: >(superClass: E, opts?: { createdAt: { columnName: string; dataType: string; }; modifiedAt: { enable: false; } | { enable?: true; columnName: string; dataType: string; }; }) => { new (...args: any[]): { createdAt: Date; modifiedAt: Date; getId: () => any; getIdObject: () => Object; toJSON: () => Object; toObject: (options?: import("@loopback/repository").Options) => Object; }; } & E; //# sourceMappingURL=tz.mixin.d.ts.map