import { ResToolType } from '../ResToolType';
/**
 * 资源工具客户端参数选项
 */
export type ResToolClientOptions = {
    /**
     * 容器
     */
    container: HTMLDivElement;
    /**
     * 类型
     */
    type: ResToolType;
    /**
     * 数据
     */
    data?: any;
    /**
     * 模式，无=默认，0=预览，1=资产库编辑
     */
    mode?: number;
};
