import type { ApiSchema } from "../schemaParser.js";
export declare function printInputSchema({ endpointName, apiSchema, }: {
    endpointName: string;
    apiSchema: ApiSchema;
}): Promise<string>;
