import { Card } from "../Card"; import { Batch } from "./Batch"; import { Totals } from "./Totals"; export interface Creatable { totals: Totals; processor: Card.Stack; references?: string[]; batch: Batch; count?: number; } export declare namespace Creatable { const type: import("isly/dist/cjs/object").IslyObject; }