import { DisplayableAction } from '../ActionType'; import { EventIndex } from '../EventIndex'; import { Flag } from '../Flag'; /** * Filters actions based on flags * Some actions can be performed only if certain flags are * present and others only if certain flags are absent */ export declare function filterActionsByFlags(actions: DisplayableAction[], flags: Flag[]): DisplayableAction[]; export declare function getAvailableActionsForEvent(event: EventIndex): DisplayableAction[]; //# sourceMappingURL=availableActions.d.ts.map