import type { ButtonHTMLAttributes, FC, ReactNode, Ref } from 'react'; export interface PaginationPreviousProps extends ButtonHTMLAttributes { children?: ReactNode; ref?: Ref; } export declare const PaginationPrevious: FC;