import { z } from 'zod'; import { userDataSchema } from './model.ts'; /** * Retrieves user data from local storage. * * @returns The user data if found in local storage, otherwise undefined. */ export declare function getUserData(): { version: string; dashboards: Record; widgetInstances: Record; }>; } | undefined; /** * Removes the user data from local storage. */ export declare function removeUserData(): void; /** * Sets the user data in the local storage based on the given input. * * @param newUserData - The new user data to be set. */ export declare function setUserData(newUserData: z.input): void;