import * as p_id from "../interface/data.js"; import { type Query_Interface } from "../interface/__internal/query/Query_Interface.js"; import { type Command_Interface } from "../interface/__internal/command/Command_Interface.js"; export * as literal from "./__internal/sync/literal.js"; export declare const query: (callback: ($d: Dynamic_Parameter, on_result: ($: Result) => undefined, on_error: ($: Error) => undefined) => undefined) => Query_Interface; export declare const command: (callback: ($: Parameter, on_success: () => undefined, on_error: ($: Error) => undefined) => undefined) => Command_Interface;