import { ActionType } from "@ngrx/store"; import { Schemas } from "../../utils/get-column-chart"; export declare enum ESchemaAction { SET_SCHEMAS = "set schemas", SET_FORMDATA = "set form data" } export declare const schemas: import("@ngrx/store").ActionCreator { schemas: Schemas; } & import("@ngrx/store/src/models").TypedAction>; export declare const formData: import("@ngrx/store").ActionCreator { formData: any; } & import("@ngrx/store/src/models").TypedAction>; export type SchemasAction = ActionType | ActionType;