export declare const formatGithubContextToMarkdown: ({ rawContext, translation, }: {
    rawContext?: string;
    translation: {
        repo: string;
        branch: string;
        structure: string;
        loaded: string;
    };
}) => string;
