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 UnseenNotificationsOptions = z.infer<typeof ZodSchema>;
export default function unseen_notifications(options: UnseenNotificationsOptions): Promise<TubeResponse<{
    count: number;
}>>;
export {};
//# sourceMappingURL=UnseenNotifications.d.ts.map