import { type JSX } from 'react'; import { DataTestId } from '../../../../core/types/data-props.js'; import { StylingProps } from '../../../../core/types/styling-props.js'; /** * DataTable internal pagination component that is actually rendering the pagination. * @internal */ interface DataTablePaginationInternalProps extends DataTestId, StylingProps { /** * The element's unique identifier. * @see [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id). */ id?: string; } /** * Internal component that actually renders the pagination. * @internal */ export declare function DataTablePaginationInternal(props: Readonly): JSX.Element; export {};