import { RootState } from '../store'; export declare const createWorkflowStoreSnapshot: () => RootState; export declare const selectFirstActionRelationAttributesExpected: () => { lAttributes: import("../actions/types").ActionAttribute[]; pAttributes: import("../actions/types").ActionAttribute[]; rAttributes: import("../actions/types").ActionAttribute[]; }; export declare const allProducedAttributesExpected: () => { datatype: string; description: string; globalId: string; id: string; label: string; name: string; required: boolean; value: string; }[]; export declare const selectAllProducedAttributesBeforeActionExected: () => { id: string; name: string; datatype: string; required: boolean; value: string; label: string; description: string; globalId: string; }[]; export declare const selectAllActionRelationsAsExecutionExpected: () => ({ id: string; rel: string[]; cmdId: string; cmdName: string; cmdOptions: { 'tmpl-text': string; }; context: {}; lAttributes: never[]; rAttributes: string[]; } | { id: string; rel: string[]; cmdId: string; cmdName: string; cmdOptions: { 'tmpl-text'?: undefined; }; context: {}; lAttributes: string[]; rAttributes: string[]; })[]; export declare const selectAllViewsAsOutputExpected: () => { id: string; label: string; layout: string; elements: { name: string; datatype: string; label: string; component: string; }[]; }[];