import { z } from "zod"; export type ModularDrawerConfiguration = { assets?: { filter?: string; leftElement?: string; rightElement?: string; }; networks?: { rightElement?: string; leftElement?: string; }; }; export declare const filterOptions: readonly ["topNetworks", "undefined"]; export declare const assetsLeftElementOptions: readonly ["apy", "marketTrend", "undefined"]; export declare const assetsRightElementOptions: readonly ["balance", "marketTrend", "undefined"]; export declare const networksLeftElementOptions: readonly ["numberOfAccounts", "numberOfAccountsAndApy", "undefined"]; export declare const networksRightElementOptions: readonly ["balance", "undefined"]; export declare const EnhancedModularDrawerConfigurationSchema: z.ZodObject<{ assets: z.ZodOptional>; leftElement: z.ZodOptional>; rightElement: z.ZodOptional>; }, z.core.$strip>>; networks: z.ZodOptional>; rightElement: z.ZodOptional>; }, z.core.$strip>>; }, z.core.$strip>; /** * Enhanced configuration for the modular drawer. * Extends the base configuration by allowing customization of `assets` and `networks` properties. */ export type EnhancedModularDrawerConfiguration = Omit & z.infer; //# sourceMappingURL=types.d.ts.map