import { ComponentInterface, PickOption, ColumnConfig, ALignType, Record } from "../../type"; import React from "react"; declare class InterceptSnapshot implements ComponentInterface { name: string; id: string; type: string; rules: any[]; componentConfig: ComponentInterface["componentConfig"]; effects: ComponentInterface["effects"]; align: ALignType; width: number; isCombinationComponent: boolean; sortField: string; formField: string; canSort: boolean; dataType: ComponentInterface["dataType"]; children: ComponentInterface[]; constructor(options: PickOption); renderSnapshot: (record: any) => React.JSX.Element; getComponentValue: (r: Record) => any; renderClient: () => null; renderPc: (value: any, record: Record) => React.JSX.Element | "--"; renderLog: () => null; renderExport: (value: any, record: Record) => any; editRender: () => null; filterConfig: (item: ColumnConfig) => { searchDefaultConditions: "like"; type: string; id: string; name: string; filterComponentType: "Input"; }; } export default InterceptSnapshot;