import { default as React } from 'react'; export declare const rootClassName = "teddy-pagination"; /** * Props for the Pagination Root component */ export type RootProps = React.ComponentPropsWithoutRef<'nav'> & { /** * Accessible label for the pagination navigation * @default 'Pagination navigation' */ 'aria-label'?: string; }; /** * Root container component for pagination navigation. * Provides the semantic nav element and base styling for pagination components. */ export declare const Root: React.ForwardRefExoticComponent, HTMLElement>, "ref"> & { /** * Accessible label for the pagination navigation * @default 'Pagination navigation' */ 'aria-label'?: string; } & React.RefAttributes>;