import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface PaginationPreviousProps extends ComposableProps<'button'> { /** * Custom content (optional, defaults to chevron-left icon) */ children?: React.ReactNode; } /** * PaginationPrevious Component * * A composable component for the previous page button in Pagination. * Automatically disabled when on first 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 first page. * - Accessible: includes ARIA label. */ export declare const PaginationPrevious: React.ForwardRefExoticComponent>; //# sourceMappingURL=PaginationPrevious.d.ts.map