import React from 'react'; import ActionAgent from "../action-agent"; export default class ProjectList extends ActionAgent { state: any; constructor(props: any); componentDidMount(): void; getProject: (idx: any) => any; queryData: () => Promise; handleSearch: (e: any) => void; getAssetsRecord: (idx: any) => any; pathFilter: (str: any) => any; notify: (title: any, isSuccess: any, text: any) => void; showProjectDetail(targetItem: any, idx: any, type?: string): void; passProps(): { notify: (title: any, isSuccess: any, text: any) => void; queryProject: () => Promise; children?: React.ReactNode; }; create(): void; /** * 根据 input-selector 的输入来过滤结果 */ projRecordSearch(records: any): any[]; render(): JSX.Element; }