import type { CodeSampleContext, CodeSampleDefinition } from './code-sample.js';
export declare const createJavascriptRequest: ({ request }: CodeSampleDefinition, _context: CodeSampleContext) => string;
export declare const createJavascriptResponse: ({ response, title }: {
    title: string;
    description: string;
    request: {
        path: string;
        parameters: Record<string, import("../json.js").Json>;
    };
    response: {
        body: Record<string, import("../json.js").Json> | null;
    };
}, context: CodeSampleContext) => string;
