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