import { z } from 'zod';
export declare const topbarSchema: z.ZodObject<{
style: z.ZodOptional<z.ZodEnum<["gradient", "default"]>>;
}, "strip", z.ZodTypeAny, {
style?: "gradient" | "default" | undefined;
}, {
style?: "gradient" | "default" | undefined;
}>;