import { type infer as zInfer } from 'zod'; export interface InfoResponse { orgId: string; orgName: string; projId: string; projName: string; envId: string; envName: string; token: string; } declare const options: import("zod").ZodObject<{ apiKey: import("zod").ZodOptional; projectName: import("zod").ZodOptional; envName: import("zod").ZodOptional; }, import("zod/v4/core").$strip>; type InfoRequest = { readonly options: zInfer; }; export declare const useFetchInfo: () => { getInfo: ({ options }: InfoRequest) => Promise; }; export {};