import { ComponentInterface, PickOption, ColumnConfig, Record } from '../../type'; import React from 'react'; declare type Value = string | string[] | undefined; export declare const DateTime: ({ value, onChange, ...otherProps }: any) => React.JSX.Element; declare class BasicDataTime 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']; format: ComponentInterface['format']; constructor(options: PickOption); getValues: (value: Value) => string | undefined; renderClient: (record: any) => React.JSX.Element | null; renderPc: (value: any, record: Record) => React.JSX.Element; renderLog: (r: Record) => React.JSX.Element | null; getComponentValue: (r: Record) => any; renderExport: (value: any, record: Record) => any; editRender: (p: any) => React.JSX.Element; filterConfig: (item: ColumnConfig) => any; } export default BasicDataTime;