import { z } from "zod"; export declare const VideoUrlSchema: z.ZodObject<{ url: z.ZodString; }, "strip", z.ZodTypeAny, { url: string; }, { url: string; }>; export declare const TranscriptInputSchema: { url: z.ZodString; lang: z.ZodDefault; }; export declare const VideoInfoInputSchema: { url: z.ZodString; }; export declare const CommentsInputSchema: { url: z.ZodOptional; limit: z.ZodDefault; sort: z.ZodDefault>; pageToken: z.ZodOptional; }; export declare const RepliesInputSchema: { pageToken: z.ZodString; }; export declare const SearchInputSchema: { query: z.ZodString; limit: z.ZodDefault; gl: z.ZodOptional; hl: z.ZodOptional; sp: z.ZodOptional; pageToken: z.ZodOptional; }; export declare const TranscriptOutputSchema: { videoInfo: z.ZodObject<{ id: z.ZodString; title: z.ZodOptional; channelName: z.ZodOptional; publishedAt: z.ZodOptional; viewCount: z.ZodOptional; }, "strip", z.ZodTypeAny, { id: string; title?: string | undefined; channelName?: string | undefined; publishedAt?: string | undefined; viewCount?: string | undefined; }, { id: string; title?: string | undefined; channelName?: string | undefined; publishedAt?: string | undefined; viewCount?: string | undefined; }>; fullText: z.ZodString; language: z.ZodString; }; export declare const VideoInfoOutputSchema: { videoId: z.ZodString; title: z.ZodOptional; viewCount: z.ZodOptional; publishDate: z.ZodOptional; channelName: z.ZodOptional; commentCount: z.ZodOptional; commentsNextPageToken: z.ZodOptional; commentsSortingTokens: z.ZodOptional, "many">>; }; export declare const CommentSchema: z.ZodObject<{ commentId: z.ZodString; author: z.ZodString; text: z.ZodString; time: z.ZodString; likes: z.ZodNumber; replies: z.ZodOptional; repliesToken: z.ZodOptional>; }, "strip", z.ZodTypeAny, { text: string; time: string; commentId: string; author: string; likes: number; replies?: number | undefined; repliesToken?: string | null | undefined; }, { text: string; time: string; commentId: string; author: string; likes: number; replies?: number | undefined; repliesToken?: string | null | undefined; }>; export declare const CommentsOutputSchema: { videoId: z.ZodString; videoTitle: z.ZodOptional; comments: z.ZodArray; repliesToken: z.ZodOptional>; }, "strip", z.ZodTypeAny, { text: string; time: string; commentId: string; author: string; likes: number; replies?: number | undefined; repliesToken?: string | null | undefined; }, { text: string; time: string; commentId: string; author: string; likes: number; replies?: number | undefined; repliesToken?: string | null | undefined; }>, "many">; commentCount: z.ZodNumber; nextPageToken: z.ZodOptional; }; export declare const RepliesOutputSchema: { parentCommentId: z.ZodString; replies: z.ZodArray, "many">; replyCount: z.ZodNumber; nextPageToken: z.ZodOptional; }; export declare const SearchOutputSchema: { searchMetadata: z.ZodOptional; searchParameters: z.ZodOptional; videoResults: z.ZodArray; channelResults: z.ZodOptional>; playlistResults: z.ZodOptional>; pagination: z.ZodOptional; next: z.ZodOptional; nextPageToken: z.ZodOptional; }, "strip", z.ZodTypeAny, { current?: number | undefined; next?: string | undefined; nextPageToken?: string | undefined; }, { current?: number | undefined; next?: string | undefined; nextPageToken?: string | undefined; }>>; }; export interface VideoBasicInfo { title?: string; channelName?: string; publishedAt?: string; viewCount?: string; } export interface VideoInfoResponse { videoId: string; title?: string; viewCount?: string; publishDate?: string; channelName?: string; commentCount?: number; commentsNextPageToken?: string; commentsSortingTokens?: SortingToken[]; } export interface SortingToken { title: string; token: string; } export interface Comment { commentId: string; author: string; text: string; time: string; likes: number; replies?: number; repliesToken?: string | null; } export interface CommentsResponse { videoId: string; videoTitle?: string; comments: Comment[]; commentCount: number; nextPageToken?: string; } export interface Reply { commentId: string; author: string; text: string; time: string; likes: number; } export interface RepliesResponse { parentCommentId: string; replies: Reply[]; replyCount: number; nextPageToken?: string; } export interface TranscriptSegment { text: string; offset: number; duration: number; } export interface TranscriptResponse { videoInfo: { id: string; title?: string; channelName?: string; publishedAt?: string; viewCount?: string; }; fullText: string; language: string; transcript?: TranscriptSegment[]; } export interface SearchResponse { searchMetadata?: Record; searchParameters?: Record; videoResults: Record[]; channelResults?: Record[]; playlistResults?: Record[]; pagination?: { current?: number; next?: string; nextPageToken?: string; }; } //# sourceMappingURL=index.d.ts.map