import { ComponentInterface, PickOption, ALignType, Record } from '../../../type'; import React from 'react'; declare class HeaderChildFile 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']; parentName?: string; transformValue: (val: any, record?: any, parentName?: string) => any; export: (val: any, record?: any, parentName?: string) => any; constructor(options: PickOption); getParentId: () => string; renderClient: (record: any) => React.JSX.Element | null; renderPc: (value: unknown, record: Record) => any; renderLog: (r: Record) => any; getComponentValue: (r: Record) => any; getComponentExport: (r: Record) => any; renderExport: (value: string, record: Record) => any; editRender: () => null; filterConfig: () => never[]; } export default HeaderChildFile;