import { type AppPlugin } from "../..";
export type TimestampsPluginOptions = {
    entities: string[];
    setUpdatedOnCreate?: boolean;
};
/**
 * This plugin adds `created_at` and `updated_at` fields to the specified entities.
 * Add it to your plugins in `bknd.config.ts` like this:
 *
 * ```ts
 * export default {
 *    plugins: [timestamps({ entities: ["posts"] })],
 * }
 * ```
 */
export declare function timestamps({ entities, setUpdatedOnCreate, }: TimestampsPluginOptions): AppPlugin;
