import { ComponentInterface, PickOption, ColumnConfig, Record } from "../../type"; import React from "react"; declare type Value = { value?: string; other?: string; }; declare class BasicRadio 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"]; options: ComponentInterface["options"]; compoundConfig: ComponentInterface["compoundConfig"]; constructor(options: PickOption); render: (value: Value) => React.JSX.Element; renderPc: (value: any, record: Record) => React.JSX.Element; renderLog: (r: Record) => React.JSX.Element | null; getComponentValue: (r: Record) => { value: any; other: any; }; renderExport: (value: any, record: Record) => string; getKeyByComponentType: (type: string) => any; renderClient: (record: Record) => React.JSX.Element | null; editRender: (p: any) => React.JSX.Element; filterConfig: (item: ColumnConfig) => { searchDefaultConditions: "in"; type: string; id: string; name: string; filterComponentType: "MultipleSelect"; props: { options: any[] | undefined; }; filterFn: (value: string) => (i: Record) => boolean; }; formDataTransform: (v: Value) => string | undefined; } export default BasicRadio;