import { ActionState } from '../actions/actions.slice'; import { Store } from '../store'; /** * Attach an action to the store * @param store * @returns */ export declare const attach: (store: Store) => (relId: string, action: ActionState, x?: number, y?: number) => void;