import { type FC, type HTMLAttributes, type ReactNode, type Ref } from 'react'; import { type TestableProps } from '../../utils/testId'; export interface NavPanelProps extends HTMLAttributes, TestableProps { ref?: Ref; children?: ReactNode; resizable?: boolean; } export declare const NavPanel: FC;