import { IntStorage } from "./int.js"; import { Context } from "../../../main.js"; import { OpenApiTypes } from "../../../schemas/open-api-types.js"; export declare const DATETIME_FIELD_TYPE_NAME = "datetime"; /** Stores a date and the time. Accepts only timestamps - number or ms since Epoch. Can be configured and filtered by in the same way as other {@link IntStorage}-based fields. */ export default class Datetime extends IntStorage { typeName: string; open_api_type: OpenApiTypes; isProperValue(context: Context, value: number | string): Promise; decode(context: Context, db_value: number | null): Promise; getPostgreSqlFieldDefinitions(): string[]; }