tinacms
Version:
> The Fastest Way to Edit Next.js Content
10 lines (9 loc) • 371 B
TypeScript
/// <reference types="react" />
export interface MediaPaginatorProps {
navigateNext: () => void;
navigatePrev: () => void;
hasNext: boolean;
hasPrev: boolean;
variant?: 'primary' | 'secondary' | 'white' | 'ghost';
}
export declare function CursorPaginator({ navigateNext, navigatePrev, hasNext, hasPrev, variant, }: MediaPaginatorProps): JSX.Element;