import type { SupportedVersion } from "@pgsql/parser"; import type { RequiredDeep, SimplifyDeep } from "type-fest"; import { type UpdatedAtOptions } from "./updated-at-options"; export interface Options { version?: SupportedVersion; updatedAt?: UpdatedAtOptions; } export type FilledOptions = SimplifyDeep>; export declare function fillOptions(options?: Options): FilledOptions; //# sourceMappingURL=options.d.ts.map