import { RowDetailConfig } from './types'; import { ObjectForExtending } from '../types'; export declare const useRowDetailPanel: ({ rows, tableConfigRowDetail, }: { rows: readonly RowType[]; tableConfigRowDetail: RowDetailConfig | undefined; }) => { rowDetailContextValue: { handleExpandRowDetail: (row: RowType) => void; expandButtonColumnKey: string | undefined; }; rowsWithExpDetails: readonly RowType[]; rowDetailIsActiveInConfig: boolean; };