/// import { Action } from './type'; interface IProps { action: Action; prefixCls: string; index: number; type: 'left' | 'right'; close: () => void; } export default function renderAction({ action, prefixCls, index, type, close }: IProps): JSX.Element; export {};