import type { Serializable } from "scandit-web-datacapture-core/build/js/private/Serializable"; import type { DateResultJSON } from "../SerializedTypes"; export declare class DateResult implements Serializable { private json; get day(): number | null; get month(): number | null; get year(): number; private static fromJSON; toJSONObject(): DateResultJSON; }