export declare const BrandEditorContentAtom: import("jotai").PrimitiveAtom & { init: string | null; }; export declare const BrandEditorFormAtom: import("jotai").PrimitiveAtom<{ textColor: string; headerStyle: "border" | "plain"; brandColor: string; subtleColor: string; link?: string | undefined; isUnsubscribe?: boolean | undefined; isPreferences?: boolean | undefined; logo?: string | undefined; facebookLink?: string | undefined; linkedinLink?: string | undefined; instagramLink?: string | undefined; mediumLink?: string | undefined; xLink?: string | undefined; } | null> & { init: { textColor: string; headerStyle: "border" | "plain"; brandColor: string; subtleColor: string; link?: string | undefined; isUnsubscribe?: boolean | undefined; isPreferences?: boolean | undefined; logo?: string | undefined; facebookLink?: string | undefined; linkedinLink?: string | undefined; instagramLink?: string | undefined; mediumLink?: string | undefined; xLink?: string | undefined; } | null; };