export declare const DotCMSEntityState: { readonly IDLE: "IDLE"; readonly LOADING: "LOADING"; readonly SUCCESS: "SUCCESS"; readonly ERROR: "ERROR"; }; export type DotCMSEntityStatus = { state: typeof DotCMSEntityState.IDLE; } | { state: typeof DotCMSEntityState.LOADING; } | { state: typeof DotCMSEntityState.SUCCESS; } | { state: typeof DotCMSEntityState.ERROR; error: Error; };