import { z } from "zod";
import TubeResponse from "../../interfaces/TubeResponse";
declare const ZodSchema: z.ZodObject<{
    cookies: z.ZodString;
    verbose: z.ZodOptional<z.ZodBoolean>;
}, "strip", z.ZodTypeAny, {
    cookies: string;
    verbose?: boolean | undefined;
}, {
    cookies: string;
    verbose?: boolean | undefined;
}>;
type subscriptions_feedOptions = z.infer<typeof ZodSchema>;
interface Content {
    type: string;
    title: string;
    videoId: string;
    thumbnails: any[];
    description: string;
    authorId: string;
    authorName: string;
    authorThumbnails: any[];
    authorBadges: any[];
    authorUrl: string;
    viewCount: string;
    shortViewCount: string;
}
export default function subscriptions_feed({ cookies, verbose }: subscriptions_feedOptions): Promise<TubeResponse<{
    contents: Content[];
}>>;
export {};
//# sourceMappingURL=SubscriptionsFeed.d.ts.map