interface HeaderButtonProps { ariaLabel?: string; onChangePage: (n: number) => void; } export declare function PrevPageButton({ ariaLabel, onChangePage }: HeaderButtonProps): JSX.Element; export declare function NextPageButton({ ariaLabel, onChangePage }: HeaderButtonProps): JSX.Element; export {};