import type { CodeWalkthroughFile } from '@redocly/config';
export declare function useCodePanel(files: CodeWalkthroughFile[]): {
    readonly activeFile: CodeWalkthroughFile;
    readonly handleTabSwitch: (name: string) => void;
    readonly highlightedCode: string;
};
