/// <reference types="react" />
type TPreviousButtonProps = {
    children?: React.ReactNode;
    onClick: () => void;
    id?: string;
    text?: string;
    className?: string;
};
declare const PreviousButton: ({ children, onClick, id, text, className }: TPreviousButtonProps) => import("react/jsx-runtime").JSX.Element;
export default PreviousButton;
