import { ComponentInterface, PickOption, ALignType, Record } from "../../type"; import React from "react"; declare class CommonHeaderGoods implements ComponentInterface { name: string; id: string; sortField: string; type: string; componentConfig: ComponentInterface["componentConfig"]; align: ALignType; width: number; isCombinationComponent: boolean; formField: string; canSort: boolean; children: ComponentInterface[]; dataType: ComponentInterface["dataType"]; itemKey: any; constructor(options: PickOption); getChildren(options: PickOption): any[]; getParentId: () => string; 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: () => never[]; } export default CommonHeaderGoods;