import { Printing } from "../interfaces";
export declare const getPrint: (printing: {
    identifier: string;
    image?: string;
    edition?: string;
    foiling?: string;
    set: string;
    treatment?: string;
    treatments?: string[];
}) => string;
export declare const orderedFullSetBlackBorderIdentifiers: string[];
export declare const getSpecialPrinting: (card: {
    cardIdentifier: string;
    name?: string;
}, printings: Printing[]) => Printing;
export declare const getDefaultPrinting: (card: {
    cardIdentifier: string;
    name: string;
}, printings: Printing[]) => Printing;
