import { FC } from 'react'; import { TextProps } from '../../../Text'; import { PaginationVariant } from '../../types'; export interface PaginationTextProps extends TextProps { /** * Visual style variant of the text. */ variant?: PaginationVariant; } /** * The PaginationTextProps interface defines props for the PaginationText component, which extends * TextProps to display supporting or contextual text (e.g. "Page 3 of 20") in a pagination UI, with * a variant prop to switch between primary and secondary visual styles. */ export declare const PaginationText: FC;