import { isoly } from "isoly"; import { Identifier } from "../../Settlement/Identifier"; import { Totals } from "../../Settlement/Totals"; import { Base } from "../Base"; export interface MissingFile extends Base { type: "missing-file"; resource: Identifier; cycle?: string; totals?: Totals; } export declare namespace MissingFile { const type: import("isly/dist/cjs/object").IslyObject; function create(id: string, cycle: string, date: isoly.Date): MissingFile; }