import { QBasePath } from "../base/QBasePath"; import { identityFormatter } from "./IdentityFormatter"; import { QDatePath } from "./QDatePath"; import { QTimeOfDayPath } from "./QTimeOfDayPath"; export declare class QDateTimeOffsetPath extends QBasePath { protected formatValue: typeof identityFormatter; year: () => import("./QNumberPath").QNumberPath; month: () => import("./QNumberPath").QNumberPath; day: () => import("./QNumberPath").QNumberPath; hour: () => import("./QNumberPath").QNumberPath; minute: () => import("./QNumberPath").QNumberPath; second: () => import("./QNumberPath").QNumberPath; date(): QDatePath; time(): QTimeOfDayPath; }