import type { ButtonProps } from "../../types/components/button";
interface Props extends ButtonProps {
    hideBackButtons?: boolean;
}
declare const ButtonNodeTestWrapper: import("svelte").Component<Props, {}, "">;
type ButtonNodeTestWrapper = ReturnType<typeof ButtonNodeTestWrapper>;
export default ButtonNodeTestWrapper;
