import { FC } from 'react';
import { PaginationProps } from "../Pagination.types-db9615e7";
interface PaginationCanvasProps extends PaginationProps {
    pageLabel?: string;
    gotoLabel?: string;
    prevPageLabel?: string;
    nextPageLabel?: string;
}
declare const PaginationCanvas: FC<PaginationCanvasProps>;
export { PaginationCanvas };
