import { GraphQLScalarType } from 'graphql'; import { ZonedDateTime } from '@js-joda/core'; /** * The representation of an OffsetDateTime in the database */ export interface StoredOffsetDateTime { readonly timestamp: string; readonly offset: string; } export declare const TIMESTAMP_PROPERTY: 'timestamp'; export declare const OFFSET_PROPERTY: 'offset'; export declare const GraphQLOffsetDateTime: GraphQLScalarType; export declare function serializeForStorage(value: ZonedDateTime): StoredOffsetDateTime;