type Props = {
    className?: string;
    children?: React.ReactNode;
    "data-testid"?: string;
    isActive?: boolean;
    onClick?: () => void;
    href?: string;
    icon?: React.ReactNode;
    append?: React.ReactNode;
    disabled?: boolean;
};
export declare const VuiMenuListButton: ({ className, isActive, onClick, href, icon, children, append, ...rest }: Props) => import("react/jsx-runtime").JSX.Element;
export {};
