import RoleSelection from "./RoleSelection"; import TokensSelection from "./TokensSelection"; import Frame from "../../data/Frame"; import DragingSelection from "./DragingSelection"; declare type Selection = null | TokensSelection | RoleSelection | DragingSelection; declare function isTokenSelected(selection: Selection, tokenIndex: number, frames: Frame[]): boolean; declare function isRoleSelected(selection: Selection, frameIndex: number, roleIndex: number): boolean; export { isTokenSelected, isRoleSelected };