import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface PaginationNextProps extends ComposableProps<'button'> { /** * Custom content (optional, defaults to chevron-right icon) */ children?: React.ReactNode; } /** * PaginationNext Component * * A composable component for the next page button in Pagination. * Automatically disabled when on last page. * * @public * * @example * ```tsx * * * * * * * ``` * * @remarks * - Wraps a Button component by default. * - Supports `asChild` prop to merge props with a custom child element. * - Automatically disabled on last page. * - Accessible: includes ARIA label. */ export declare const PaginationNext: React.ForwardRefExoticComponent>; //# sourceMappingURL=PaginationNext.d.ts.map