import { type KeyboardEvent, type ReactNode } from 'react'; export declare function DocumentTaskPane({ ariaLabel, title, description, closeLabel, className, children, onClose, onKeyDown, }: { ariaLabel?: string; title: string; description?: ReactNode; closeLabel: string; className: string; children: ReactNode; onClose: () => void; onKeyDown?: (event: KeyboardEvent) => void; }): import("react").JSX.Element;