import { isly } from "isly"; import { Data } from "./Data"; export interface Submit { type?: (typeof Submit.values)[number]; result: (result: boolean) => void; value: D; } export declare namespace Submit { const values: readonly ["update", "change", "fetch", "create", "remove"]; const type: import("isly/dist/types/object").IslyObject, object>; const is: (value: Submit | any) => value is Submit; const flaw: (value: Submit | any) => isly.Flaw; }