import { ComponentInterface, PickOption, Record } from "../../../type"; import React from "react"; declare class KmVideo implements ComponentInterface { name: string; id: string; sortField: string; formField: string; type: string; rules: any[]; componentConfig: ComponentInterface["componentConfig"]; isCombinationComponent: boolean; canSort: boolean; children: ComponentInterface[]; effects: ComponentInterface["effects"]; dataType: ComponentInterface["dataType"]; constructor(options: PickOption); renderPcTooltip: (value: any, record: Record) => any; renderPc: (value: any, record: Record) => any; renderLog: (r: Record) => any; getComponentValue: (r: Record) => any; renderClient: (record: any) => React.JSX.Element | null; editRender: (p: any) => React.JSX.Element; /** * * @returns */ renderExport: (value: any, record: any) => any; /** * * @returns 文件不支持过滤 */ filterConfig: () => never[]; } export default KmVideo;