import { ReactElement, ReactNode } from "react";
type Props = {
    title: ReactNode;
    description?: ReactNode;
    footer?: ReactNode;
    icon?: ReactElement;
    onClick: () => void;
    isDisabled?: boolean;
    className?: string;
    "data-testid"?: string;
    "aria-label"?: string;
};
export declare const VuiComplexConfigurationButton: ({ title, description, footer, icon, onClick, isDisabled, className, "data-testid": dataTestId, "aria-label": ariaLabel }: Props) => import("react/jsx-runtime").JSX.Element;
export {};
