import React from 'react'; import ArrowLeft from '@qlik-trial/sprout/icons/react/ArrowLeft'; interface Props { disabledCondition: boolean; pageNumber: number; type: string; onKeyDown?: ((event: React.KeyboardEvent) => void) | null; } declare const usePaginationButton: ({ disabledCondition, pageNumber, type }: Props) => { styledProps: { footerStyle: import("./types").FooterStyle; disabledCondition: boolean; size: string; 'data-testid': string; 'aria-disabled': boolean; 'aria-label': string; title: string | undefined; tabIndex: number; onClick: (() => void) | null; }; IconComponent: typeof ArrowLeft; }; export default usePaginationButton;