import { z } from 'zod/v4-mini'; import type { ApiParams } from '../types/ApiParams.js'; export interface GetDataInput { /** Path array from the data bus source */ path: string[]; } export declare const ZodGetDataInput: z.ZodMiniObject, z.core.$strip>; export declare function getData(params: ApiParams): unknown; export declare namespace getData { var procedure: import("@trpc/server").TRPCQueryProcedure<{ input: GetDataInput; output: unknown; meta: never; }>; } //# sourceMappingURL=getData.d.ts.map