import type { clutch as IClutch } from "@clutch-sh/api"; import type { HydratedData } from "./types"; declare const transformAPISharedState: (data: IClutch.shortlink.v1.IShareableState[]) => HydratedData; declare const storeLocalData: (key: string, data: unknown) => void; declare const removeLocalData: (key: string) => void; declare type GenericRetrieve = (store: HydratedData, componentName: string, key: string, defaultData: T) => T; declare const retrieveData: GenericRetrieve; export { removeLocalData, retrieveData, storeLocalData, transformAPISharedState }; //# sourceMappingURL=helpers.d.ts.map