import React from 'react'; import './index.less'; export interface IMultiServiceTagItemProps { tagName: string; appServiceCode: string; projectId: string; } export interface IMultiServiceTagProps { onOK?: (data: IMultiServiceTagItemProps[]) => void; onCancel?: () => void; data: Array & { tagName: string[]; }>; projectId?: string; mode?: 'program' | 'project'; } declare const _default: React.FunctionComponent; export default _default;