import * as React from "react";
export interface TableDetailPanelProps {
    /**
     * Whether the panel is open
     */
    isOpen: boolean;
    /**
     * Callback to close the panel
     */
    onClose?: () => void;
    /**
     * Content to display in the panel
     */
    children: React.ReactNode;
    /**
     * Custom class name
     */
    className?: string;
    /**
     * Panel width
     */
    width?: string | number;
}
export declare const TableDetailPanel: React.ForwardRefExoticComponent<TableDetailPanelProps & React.RefAttributes<HTMLDivElement>>;
//# sourceMappingURL=TableDetailPanel.d.ts.map