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