import { z } from 'zod'; import { BubbleBlockType } from './enums'; export declare const audioBubbleContentSchema: z.ZodObject<{ url: z.ZodOptional; }, "strip", z.ZodTypeAny, { url?: string | undefined; }, { url?: string | undefined; }>; export declare const audioBubbleBlockSchema: z.ZodObject<{ id: z.ZodString; groupId: z.ZodString; outgoingEdgeId: z.ZodOptional; } & { type: z.ZodEnum<[BubbleBlockType.AUDIO]>; content: z.ZodObject<{ url: z.ZodOptional; }, "strip", z.ZodTypeAny, { url?: string | undefined; }, { url?: string | undefined; }>; }, "strip", z.ZodTypeAny, { id: string; type: BubbleBlockType.AUDIO; groupId: string; content: { url?: string | undefined; }; outgoingEdgeId?: string | undefined; }, { id: string; type: BubbleBlockType.AUDIO; groupId: string; content: { url?: string | undefined; }; outgoingEdgeId?: string | undefined; }>; export declare const defaultAudioBubbleContent: {}; export type AudioBubbleBlock = z.infer; export type AudioBubbleContent = z.infer; //# sourceMappingURL=audio.d.ts.map