import React from 'react'; import './index.less'; import { WrappedFormUtils } from 'kts-components-antd-x3/lib/form/Form'; export interface IInvoiceHeader { /** 标题 */ title?: string; /** 标记文字 */ tag?: string; /** 是否显示发票单据编号 */ isInvoiceNo?: boolean; /** 是只读 发票单据编号 */ readOnlyInvoiceNo?: boolean; /** 默认 编号 */ defaultId?: string; /** 默认 发票代码 */ defaultCode?: string; /** 默认 发票号码 */ defaultNo?: string; /** 效验码 */ defaultValidationCode?: string; /** 默认 开票日期 */ defaultInvoicingDate?: string; /** 字段扩展 */ fieldExpand?: { label: React.ReactNode; render: (form: WrappedFormUtils) => React.ReactChild; }[]; /** 发票类型 索引 */ typeOptionIndex?: number; /** 发票类型 */ typeOption?: { title: string; value: any; }[]; /** 发票类型 被切换 */ onChangeTypeOption?: (e: number) => void; /** 渲染扩展 */ renderExpand?: (form: WrappedFormUtils) => React.ReactChild; } declare const _default: React.FunctionComponent; export default _default;