import { STATES } from "../states"; export declare const config: { initialState: STATES; transitions: ({ name: string; from: STATES; to: STATES; } | { name: string; from: STATES[]; to: STATES; })[]; }; export declare type IConfiguration = typeof config;