import type { Pagination } from "../../types/pagination.js"; export interface PixabayPaginationFields { page: number; per_page: number; totalHits: number; } export declare function mapPixabayPagination(fields: PixabayPaginationFields): Pagination;