import { AppIdentifier } from "./types"; /** * generateRootID attempts to create a dynamic ID to be * used with a HTML element that is relatively unique * and will not cause namespace conflicts. * * E.g. 'zerohash-49vt8y' */ export declare const generateRootID: (appIdentifier?: AppIdentifier) => string; export declare const dispatchActionBasedOnAppIdentifier: (appIdentifier: AppIdentifier, actionTypeSuffix: string, payload: object) => void;