import type AuthenticationFlowRepresentation from "@keycloak/keycloak-admin-client/lib/defs/authenticationFlowRepresentation";
import type { AuthenticationProviderRepresentation } from "@keycloak/keycloak-admin-client/lib/defs/authenticatorConfigRepresentation";
import { Flow } from "../authentication/components/modals/AddSubFlowModal";
import "./empty-execution-state.css";
type EmptyExecutionStateProps = {
    flow: AuthenticationFlowRepresentation;
    onAddExecution: (type: AuthenticationProviderRepresentation) => void;
    onAddFlow: (flow: Flow) => void;
};
export declare const EmptyExecutionState: ({ flow, onAddExecution, onAddFlow, }: EmptyExecutionStateProps) => import("react/jsx-runtime").JSX.Element;
export {};
