import { z } from "zod"; export declare const blockquoteSchema: z.ZodObject<{ paddingHorizontal: z.ZodNumber; paddingVertical: z.ZodNumber; backgroundColor: z.ZodString; borderLeftWidth: z.ZodNumber; borderColor: z.ZodString; fontSize: z.ZodOptional>; lineHeight: z.ZodOptional>; id: z.ZodOptional; }, "strip", z.ZodTypeAny, { backgroundColor: string; borderColor: string; paddingVertical: number; paddingHorizontal: number; borderLeftWidth: number; id?: string | undefined; fontSize?: number | null | undefined; lineHeight?: number | null | undefined; }, { backgroundColor: string; borderColor: string; paddingVertical: number; paddingHorizontal: number; borderLeftWidth: number; id?: string | undefined; fontSize?: number | null | undefined; lineHeight?: number | null | undefined; }>; export type BlockquoteProps = z.infer;