import React from 'react'; import type { RenderExpandIconProps, Key, GetRowKey } from '../OcTable.types'; export declare function renderExpandIcon({ expandable, expanded, onExpand, record, disabled, }: RenderExpandIconProps): React.JSX.Element; export declare function findAllChildrenKeys(data: readonly RecordType[], getRowKey: GetRowKey, childrenColumnName: string): Key[];