import { Country, Timezone } from "../Interfaces";
import type { Home } from "../Interfaces/Home";
interface IOptions {
    cookie?: string;
    timezone?: Timezone;
    country?: Country;
    sectionItemsLimit?: number;
}
export declare function getHomeFeed<T extends IOptions>(options: T): Promise<Home>;
export {};
//# sourceMappingURL=getHomeFeed.d.ts.map