import * as React from 'react'; import { BoxProps } from '../../primitives/Box'; import { BaseLinkProps } from '../BaseLink'; type PaginationLinkProps = BaseLinkProps; declare const PreviousLink: = "a">(props: React.PropsWithoutRef> & React.RefAttributes) => React.ReactNode; type PreviousLinkComponent = (props: PaginationLinkProps) => React.ReactNode; declare const NextLink: = "a">(props: React.PropsWithoutRef> & React.RefAttributes) => React.ReactNode; type NextLinkComponent = (props: PaginationLinkProps) => React.ReactNode; type PaginationPageLinkProps = PaginationLinkProps & { number: number; }; declare const PageLink: = "a">(props: React.PropsWithoutRef> & React.RefAttributes) => React.ReactNode; type PageLinkComponent = (props: PaginationPageLinkProps) => React.ReactNode; interface DotsProps extends BoxProps { } declare const Dots: ({ children, ...props }: DotsProps) => import("react/jsx-runtime").JSX.Element; export { Dots, NextLink, PageLink, PreviousLink }; export type { PaginationLinkProps, PaginationPageLinkProps, DotsProps, PageLinkComponent, PreviousLinkComponent, NextLinkComponent, }; //# sourceMappingURL=components.d.ts.map