import React from 'react'; import './index.less'; interface SetCompUrlStateProps { disabled?: boolean; codeDataIndex?: string; nameDataIndex?: string; settingDataIndex?: string; settings: any[]; contextOptions: any[]; onChange: (newSettings: any[]) => void; } export declare const DEFAULT_CODE_DATAINDEX = "code"; export declare const DEFAULT_NAME_DATAINDEX = "name"; export declare const DEFAULT_SETTING_DATAINDEX = "value"; declare const SetCompUrlState: React.FC; export default SetCompUrlState;