import type { SpaceProps } from 'antd';
import type { FC } from 'react';
interface IActionsProps extends SpaceProps {
    /** 全局禁用状态 */
    disabled?: boolean;
}
/**
 * 搜索操作
 */
declare const Actions: FC<IActionsProps>;
export default Actions;
