import { PropsWithChildren } from 'react'; import { FormOptions, FormType } from '../../../interfaces'; export interface FormAccessProps { form: Partial; roles: any; onSubmit?: Function; options?: FormOptions; } export declare function FormAccess(props: PropsWithChildren): import("react/jsx-runtime").JSX.Element;