import React from "react";
import { Entity, FormContext, ResolvedEntityCollection } from "../types";
import { FormexController } from "@firecms/formex";
export interface EntityFormActionsProps {
    fullPath: string;
    fullIdPath?: string;
    collection: ResolvedEntityCollection;
    path: string;
    entity?: Entity;
    layout: "bottom" | "side";
    savingError?: Error;
    formex: FormexController<any>;
    disabled: boolean;
    status: "new" | "existing" | "copy";
    pluginActions: React.ReactNode[];
    openEntityMode: "side_panel" | "full_screen";
    showDefaultActions?: boolean;
    navigateBack: () => void;
    formContext: FormContext;
}
export declare function EntityFormActions({ fullPath, fullIdPath, collection, entity, layout, savingError, formex, disabled, status, pluginActions, openEntityMode, navigateBack, formContext }: EntityFormActionsProps): import("react/jsx-runtime").JSX.Element;
