import type { CodeBlockItems } from '../../components/CodeBlock/CodeBlock'; type CodeBlockTabsProps = { tabs: CodeBlockItems; containerRef: React.RefObject; tabRefs: React.RefObject; }; export declare function useCodeBlockTabsControls({ tabs, containerRef, tabRefs }: CodeBlockTabsProps): { showControls: boolean; handlePrevTab: () => void; handleNextTab: () => void; }; export {};