import { ActionProps, DisplayMode, FormDefinition } from './types';
type FormSwitcherProps = {
    loading?: boolean;
    actions?: ActionProps[];
    displayMode?: DisplayMode;
    data?: FormDefinition;
} & any;
export default function FormSwitcher(props: FormSwitcherProps): import("react/jsx-runtime").JSX.Element;
export {};
