/** * Enhanced Table Footer Action Component * * Navigation buttons for table pagination with RTL/LTR support. * Automatically adjusts arrow directions and button order based on locale. * * Features: * - RTL/LTR arrow direction adjustment * - Button order reversal for RTL layouts * - Accessibility attributes * - Internationalized aria labels * - Disabled state handling * - Loading state support */ import { FC } from "react"; interface EnhancedTableFooterActionProps { /** Handler for next page navigation */ handleNextOnClick: () => void; /** Handler for previous page navigation */ handlePreviousOnClick: () => void; /** Whether next button should be disabled */ isNextDisabled?: boolean; /** Whether previous button should be disabled */ isPreviousDisabled?: boolean; /** Loading state indicator */ loading?: boolean; /** RTL layout flag */ isRTL?: boolean; /** Label for previous page button */ previousPageLabel?: string; /** Label for next page button */ nextPageLabel?: string; /** `data-testid` for the root wrapper containing the action buttons. */ testIdWrapper?: string; /** `data-testid` for the previous button. */ testIdPrevious?: string; /** `data-testid` for the next button. */ testIdNext?: string; /** `data-testid` for the previous icon element. */ testIdPreviousIcon?: string; /** `data-testid` for the next icon element. */ testIdNextIcon?: string; } export declare const EnhancedTableFooterAction: FC; export {};