interface IFoodPairingMap {
    [key: string]: FoodPairing;
}
declare class FoodPairing {
    code: string;
    identifier: string;
    name: string;
    byName: FoodPairing | null;
    constructor({ code, identifier, name }: {
        code: any;
        identifier: any;
        name: any;
    });
    static byName: IFoodPairingMap;
}
export default FoodPairing;
