import type { Genre } from "../Interfaces/Genres";
interface PagePagination {
    offSet?: number;
    limit?: number;
}
interface SectionPagination {
    offSet?: number;
    limit?: number;
}
interface IOptions {
    pageId?: string;
    pagePagination?: PagePagination;
    sectionPagination?: SectionPagination;
}
export declare function getGenre<T extends IOptions>(options: T): Promise<Genre>;
export {};
//# sourceMappingURL=getGenre.d.ts.map