import React from 'react'; import SkipLink from '../SkipLink'; interface TwoColumnPanelProps extends React.HTMLAttributes { initialCollapsed?: boolean; showCollapsedPanelLabel?: string; hideCollapsedPanelLabel?: string; skipLink?: SkipLink; collapsedMediaQuery?: string; } declare const TwoColumnPanel: React.ForwardRefExoticComponent>; export default TwoColumnPanel;