import type { BaseSyntheticEvent, Dispatch, FC, FormEventHandler } from 'react'; import type { RunItHttpMethod, RunItInput, RunItValues } from '../../RunIt'; interface RequestFormProps { inputs: RunItInput[]; handleSubmit: (e: BaseSyntheticEvent) => void; httpMethod: RunItHttpMethod; requestContent: RunItValues; setRequestContent: Dispatch; needsAuth: boolean; hasConfig: boolean; handleConfig: (e: BaseSyntheticEvent) => void; setHasConfig?: Dispatch; validationMessage?: string; setValidationMessage?: Dispatch; keepBody?: boolean; toggleKeepBody?: (_event: FormEventHandler) => void; isExtension?: boolean; } export declare const RequestForm: FC; export {};