import { LiveAppManifest } from "../../platform/types";
import { LocalLiveAppDB } from "../react";
export type LiveAppProviderProps = {
    children: React.ReactNode;
    db: LocalLiveAppDB;
};
export type LiveAppContextType = {
    state: LiveAppManifest[];
    addLocalManifest: (LiveAppManifest: any) => void;
    removeLocalManifestById: (string: any) => void;
    getLocalLiveAppManifestById: (string: any) => LiveAppManifest | undefined;
};
//# sourceMappingURL=types.d.ts.map