import type React from "react"; import type { ReactNode } from "react"; type NextButtonProps = { disabled: boolean; onClick: React.MouseEventHandler; label?: ReactNode; ariaLabel?: string; showIconOnly?: boolean; }; declare const NextButton: ({ disabled, onClick, label, ariaLabel, showIconOnly }: NextButtonProps) => import("react/jsx-runtime").JSX.Element; export default NextButton;