import { ComponentInterface, PickOption, ColumnConfig, ALignType, Record } from '../../type'; import React from 'react'; import { ExpressData } from '@kmkf-fe-packages/kmkf-utils'; declare class TrajectoryCompany implements ComponentInterface { name: string; id: string; sortField: string; type: string; rules: any[]; componentConfig: ComponentInterface['componentConfig']; align: ALignType; expressDateInstance: InstanceType; width: number; isCombinationComponent: boolean; formField: string; canSort: boolean; children: ComponentInterface[]; dataType: ComponentInterface['dataType']; options: ComponentInterface['options']; constructor(options: PickOption); renderClient: (record: any) => React.JSX.Element | null; renderPc: (value: unknown, record: Record) => React.JSX.Element; renderLog: (r: Record) => React.JSX.Element | null; getComponentValue: (r: Record) => any; renderExport: (value: string, record: Record) => any; editRender: () => null; filterConfig: (item: ColumnConfig) => { searchDefaultConditions: "in"; type: string; id: string; name: string; filterComponentType: "MultipleSelect"; props: { options: any[]; }; filterFn: (value: string) => (i: Record) => boolean; }; } export default TrajectoryCompany;