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