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