import { ModalProps } from '../modal/interface'; import { SpaceProps } from '../space/interface'; /** * @title ModalAction */ export interface ModalActionProps extends Omit { onAction?: (item: any, vals: any) => void; footer?: any[] | null | undefined; spaceProps?: SpaceProps; }