import { AtomicStateNodeConfig, StatesConfig, Event, EventObject, StateSchema } from './types'; export declare function toggle(onState: string, offState: string, eventType: TEventType): Record>; interface SequencePatternOptions { nextEvent: Event | undefined; prevEvent: Event | undefined; } export declare function sequence(items: Array, options?: Partial>): { initial: keyof TStateSchema['states']; states: StatesConfig; }; export {}; //# sourceMappingURL=patterns.d.ts.map