import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface PaginationLinkProps extends ComposableProps<'button'> { /** * Page number for this link */ page: number; /** * The link content (typically page number). */ children?: React.ReactNode; } /** * PaginationLink Component * * A composable component for page links in Pagination. * Similar to PaginationItem but provides more control over rendering. * * @public * * @example * ```tsx * * * First * * * ``` * * @remarks * - Wraps a Button component by default. * - Supports `asChild` prop to merge props with a custom child element. * - Automatically handles page changes. */ export declare const PaginationLink: React.ForwardRefExoticComponent>; //# sourceMappingURL=PaginationLink.d.ts.map