import { z } from 'zod';
export declare const CommentSchema: z.ZodObject<{
    created_at: z.ZodOptional<z.ZodNullable<z.ZodBranded<z.ZodEffects<z.ZodNumber, import("./unix-timestamp.js").UnixTimestamp, number>, "UnixTimestamp">>>;
    updated_at: z.ZodOptional<z.ZodNullable<z.ZodBranded<z.ZodEffects<z.ZodNumber, import("./unix-timestamp.js").UnixTimestamp, number>, "UnixTimestamp">>>;
} & {
    _id: z.ZodString;
    text: z.ZodString;
    user_id: z.ZodString;
}, "strict", z.ZodTypeAny, {
    _id: string;
    text: string;
    user_id: string;
    created_at?: (number & {
        __brand: "UnixTimestamp";
    } & z.BRAND<"UnixTimestamp">) | null | undefined;
    updated_at?: (number & {
        __brand: "UnixTimestamp";
    } & z.BRAND<"UnixTimestamp">) | null | undefined;
}, {
    _id: string;
    text: string;
    user_id: string;
    created_at?: number | null | undefined;
    updated_at?: number | null | undefined;
}>;
