import { z } from "zod";
import { CommentType } from "../../../interfaces/CommentType";
declare const ZodSchema: z.ZodObject<{
    query: z.ZodString;
    verbose: z.ZodOptional<z.ZodBoolean>;
}, "strip", z.ZodTypeAny, {
    query: string;
    verbose?: boolean | undefined;
}, {
    query: string;
    verbose?: boolean | undefined;
}>;
type VideoCommentsOptions = z.infer<typeof ZodSchema>;
export default function videoComments({ query, verbose }: VideoCommentsOptions): Promise<CommentType[]>;
export {};
//# sourceMappingURL=Comments.d.ts.map