import { JSX, ReactNode } from 'react'; export interface LeftPanelFooterProps { /** Additional class name applied to the footer region. */ className?: string; /** Content placed in the gray footer area. */ children?: ReactNode; } export declare const LeftPanelFooter: { ({ className, children }: LeftPanelFooterProps): JSX.Element; displayName: string; }; export default LeftPanelFooter;