import * as React from 'react'; export interface DrawerPanelRef { focus: VoidFunction; } export interface DrawerPanelEvents { onMouseEnter?: React.MouseEventHandler; onMouseOver?: React.MouseEventHandler; onMouseLeave?: React.MouseEventHandler; onClick?: React.MouseEventHandler; onKeyDown?: React.KeyboardEventHandler; onKeyUp?: React.KeyboardEventHandler; } export interface DrawerPanelProps extends DrawerPanelEvents { prefixCls: string; className?: string; id?: string; style?: React.CSSProperties; children?: React.ReactNode; containerRef?: React.Ref; } declare const DrawerPanel: { (props: DrawerPanelProps): React.JSX.Element; displayName: string; }; export default DrawerPanel;