import React from 'react'; interface IProps { data: any; fnForceUpdate: () => void; handleCancel: () => void; } export default class Component extends React.Component { formRef: any; constructor(props: IProps); handleSubmit: (values: any) => Promise; handleResponse: (res: any) => null | undefined; onSave: () => void; success: () => void; error: () => void; onCodeChange: (rule: any, value: any, callback: any) => void; changeInvoiceNumber: (e: any) => void; isAllElectric: (invoiceNumber: string) => boolean | ""; onincreaseTabindex1: (e: any) => void; onincreaseTabindex2: (e: any) => void; onincreaseTabindex3: (e: any) => void; onincreaseTabindex4: (e: any) => void; checkDate: (rule: any, value: any, callback: any) => void; render(): JSX.Element; } export {};