import { INTEGER } from "../../macros.mjs";
export default class TIME_OF_DAY_FRACTION_ENCODING {
    readonly hours: INTEGER;
    readonly minutes: INTEGER;
    readonly seconds: INTEGER;
    readonly fractional_part: INTEGER;
    constructor(hours: INTEGER, minutes: INTEGER, seconds: INTEGER, fractional_part: INTEGER);
}
