import { type IAutomationMetadataObject } from "@gooddata/sdk-model"; import { type GoodDataSdkError } from "@gooddata/sdk-ui"; /** * @alpha */ export interface IAutomationsState { isInitialized: boolean; isLoading: boolean; error?: GoodDataSdkError; userAutomations: IAutomationMetadataObject[]; allAutomationsCount: number; } export declare const automationsInitialState: IAutomationsState; //# sourceMappingURL=automationsState.d.ts.map