import { ComponentInterface, PickOption, Record, ColumnConfig } from "../../type"; import React from "react"; import { AddressData } from "@kmkf-fe-packages/kmkf-utils"; import Province from "../BS/BsPosting/components/Province"; import City from "../BS/BsPosting/components//City"; import District from "../BS/BsPosting/components//District"; import Detail from "../BS/BsPosting/components//Detail"; import ReceiverName from "../BS/BsPosting/components//ReceiverName"; import ReceiverMobile from "../BS/BsPosting/components//ReceiverMobile"; declare type SortColumnsField = Array; declare class BasicPosting implements ComponentInterface { name: string; id: string; sortField: string; type: string; rules: any[]; componentConfig: ComponentInterface["componentConfig"]; isCombinationComponent: boolean; formField: string; canSort: boolean; children: ComponentInterface[]; dataType: ComponentInterface["dataType"]; addressDateInstance: InstanceType; province: Province; city: City; district: District; detail: Detail; receiverName: ReceiverName; receiverMobile: ReceiverMobile; isSplitColumns: boolean; sortColumns: SortColumnsField; headerProvince: boolean; constructor(options: PickOption); getChildren: () => (Province | City | District | Detail | ReceiverName | ReceiverMobile | undefined)[]; getSortColumns: (sortColumns: string | undefined) => SortColumnsField; renderPc: (value: any, record: Record) => React.JSX.Element | null; renderLog: (r: Record) => React.JSX.Element | null; getComponentValue: (r: Record) => { province: any; city: any; district: any; detail: any; name: any; mobile: any; }; renderExport: (value: any, record: Record) => string | null; renderClient: (record: any) => React.JSX.Element | null; editRender: (p: any) => React.JSX.Element; filterConfig: (item: ColumnConfig) => ({ searchDefaultConditions: "in"; type: string; id: string; name: string; filterComponentType: "Input"; formatFilterValue: (input: string) => string | string[]; } | null)[]; } export default BasicPosting;