import { Card } from "@flesh-and-blood/types";
export interface Abbreviation {
    abbreviations: string[];
    card: string;
    isHidden?: boolean;
}
export declare const getAbbreviation: (abbreviation: string) => Abbreviation | undefined;
export declare const getAbbreviationByCard: (c: Card) => Abbreviation | undefined;
export declare const abbreviations: Abbreviation[];
