/// import { EditFormProps } from '../../forms/crud/EditForm'; import FormActionProps from '@genstackio/react-admin-ui/lib/molecules/forms/FormActionProps'; import { WithId, WithMutationName, WithQueryName, WithSpinnerComponent } from '@genstackio/react-admin-ui/lib/withs'; export declare function EditAction({ name, id, edit, singular, onSuccess, prepare, spinnerComponent, ...props }: EditActionProps): JSX.Element; export interface EditActionProps extends EditFormProps, FormActionProps, Required, WithSpinnerComponent, WithQueryName, WithMutationName { name: string; edit?: { content?: any; form?: boolean; attributes?: string[]; prepare?: Function; }; singular: string; } export default EditAction; //# sourceMappingURL=EditAction.d.ts.map