import { EntityEidType, BasicInfoAtomType, TransformAtomType, VisibleAtomType } from './data-type';
export interface IWimPipeBaseInfoAtom {
    pipeUrl: string;
    parserType: string;
}
export interface IWimPipeBaseInfoAtomType extends EntityEidType, Partial<BasicInfoAtomType>, Partial<TransformAtomType>, Partial<VisibleAtomType> {
    wimPipeStyle?: Partial<IWimPipeBaseInfoAtom>;
}
export interface IGenerate {
    WimPipeBaseInfoAtom?: Partial<IWimPipeBaseInfoAtom>;
    BasicInfoAtom?: Partial<BasicInfoAtomType>;
    TransformAtom?: Partial<TransformAtomType>;
    VisibleAtom?: Partial<VisibleAtomType>;
}
export interface ICreateWimPipeEntity {
    pipeUrl: string;
    parserType: string;
    parserGroup: string;
}
