interface PlaqueInfo {
    type: "governmental" | "personal" | "handicapped" | "taxi" | "police" | "sepah" | "military" | "ministry" | "headquarter" | "agriculture" | "temporary" | "diplomatic" | "service";
    letter: string;
    bg: string;
    text: string;
}
declare function getPlaqueInfo(letter?: string): PlaqueInfo;

export { getPlaqueInfo };
