import React from 'react'; interface IProps { url: any; fnForceUpdate: () => void; } export default class Component extends React.Component { constructor(props: IProps); handleSubmit: (values: any) => Promise; resetForm: () => void; success: () => void; error: () => void; onCodeChange: (rule: any, value: any, callback: any) => void; render(): JSX.Element; } export {};