/** * Copyright © INOVUA TRADING. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import { TypeExpandedRows } from '../types'; export declare const isRowExpandEnabled_FromProps: (props: { enableRowExpand?: boolean | undefined; expandedRows?: TypeExpandedRows | undefined; defaultExpandedRows?: TypeExpandedRows | undefined; renderRowDetails?: ((...args: any[]) => any) | undefined; renderDetailsGrid?: ((...args: any[]) => any) | undefined; }) => boolean;