import { CSSProperties } from 'styled-components'; export interface CursorPaginationProps { cursor?: string; hasPrevCursor: boolean; hasNextCursor: boolean; popCursor: () => void; advanceCursor: () => void; reset: () => void; style?: CSSProperties; } export declare const CursorPaginationControls: ({ hasPrevCursor, hasNextCursor, popCursor, advanceCursor, style, }: CursorPaginationProps) => import("react/jsx-runtime").JSX.Element; export declare const CursorHistoryControls: ({ hasPrevCursor, hasNextCursor, popCursor, advanceCursor, style, }: CursorPaginationProps) => import("react/jsx-runtime").JSX.Element; export declare const CursorControlsContainer: import("styled-components").StyledComponent<"div", any, {}, never>;