import type { MigrationDiff } from "@mikro-orm/core"; import type { InterceptorContext } from "./interceptor"; export interface UpdatedAtInfo { schemaName: string | null; tableName: string; columnNames: string[]; } export declare class UpdatedAtProcessor { private readonly interceptorContext; private readonly diff; private readonly updatedAtInfos; constructor(interceptorContext: InterceptorContext, diff: MigrationDiff); process(): void; private collectUpdatedAtInfos; private parseUp; private parseCreateStmt; private parseColumnDef; } //# sourceMappingURL=updated-at-processor.d.ts.map