import type { CSSProperties, ReactNode } from 'react'; type ShowAllProp = { showContent: ReactNode; hideContent: ReactNode; onShowHide?: (expanded: 'show' | 'hide') => void; disabled?: boolean; /** * Add a tooltip to display on hover when the navigation is not-exanped */ tooltip?: string; 'data-testid'?: string; style?: CSSProperties; }; export declare const ShowHide: import("react").MemoExoticComponent<({ showContent, hideContent, onShowHide, tooltip, 'data-testid': dataTestId, style }: ShowAllProp) => import("react").JSX.Element>; export {}; //# sourceMappingURL=ShowHide.d.ts.map