import * as React from 'react'; import { OverrideProps } from 'mui-ultra/types'; import { SlotComponentProps } from '../utils'; export interface TablePaginationActionsUnstyledComponentsPropsOverrides { } export interface TablePaginationActionsUnstyledOwnProps { /** * Override or extend the styles applied to the component. */ classes?: {}; count: number; /** * The components used for each slot inside the TablePagination. * Either a string to use a HTML element or a component. * @default {} */ components?: { Root?: React.ElementType; FirstButton?: React.ElementType; LastButton?: React.ElementType; NextButton?: React.ElementType; BackButton?: React.ElementType; FirstPageIcon?: React.ElementType; LastPageIcon?: React.ElementType; NextPageIcon?: React.ElementType; BackPageIcon?: React.ElementType; }; /** * The props used for each slot inside the TablePagination. * @default {} */ componentsProps?: { root?: SlotComponentProps<'div', TablePaginationActionsUnstyledComponentsPropsOverrides, TablePaginationActionsUnstyledOwnerState>; firstButton?: SlotComponentProps<'button', TablePaginationActionsUnstyledComponentsPropsOverrides, TablePaginationActionsUnstyledOwnerState>; lastButton?: SlotComponentProps<'button', TablePaginationActionsUnstyledComponentsPropsOverrides, TablePaginationActionsUnstyledOwnerState>; nextButton?: SlotComponentProps<'button', TablePaginationActionsUnstyledComponentsPropsOverrides, TablePaginationActionsUnstyledOwnerState>; backButton?: SlotComponentProps<'button', TablePaginationActionsUnstyledComponentsPropsOverrides, TablePaginationActionsUnstyledOwnerState>; }; /** * Direction of the text. * @default 'ltr' */ direction?: 'ltr' | 'rtl'; /** * Accepts a function which returns a string value that provides a user-friendly name for the current page. * This is important for screen reader users. * * For localization purposes, you can use the provided [translations](/material-ui/guides/localization/). * @param {string} type The link or button type to format ('first' | 'last' | 'next' | 'previous'). * @returns {string} */ getItemAriaLabel: (type: 'first' | 'last' | 'next' | 'previous', page: number) => string; onPageChange: (event: React.MouseEvent | null, page: number) => void; page: number; rowsPerPage: number; showFirstButton: boolean; showLastButton: boolean; } export declare type TablePaginationActionsUnstyledProps = OverrideProps, D> & { component?: D; }; export interface TablePaginationActionsUnstyledTypeMap

{ props: P & TablePaginationActionsUnstyledOwnProps; defaultComponent: D; } export declare type TablePaginationActionsUnstyledOwnerState = TablePaginationActionsUnstyledProps; export declare type TablePaginationActionsUnstyledRootSlotProps = { children?: React.ReactNode; ownerState: TablePaginationActionsUnstyledOwnerState; ref: React.Ref; }; export declare type TablePaginationActionsUnstyledButtonSlotProps = { 'aria-label': string; children?: React.ReactNode; disabled: boolean; onClick: React.MouseEventHandler; ownerState: TablePaginationActionsUnstyledOwnerState; title: string; };