export interface AbbreviationRule {
    enabled: boolean;
    phrase: string;
    replacement: string;
}
/**
 * These are the rules for abbreviating stop names.
 * They follow the CTT National Postal Service guidelines,
 * with some additional customizations for TML.
 */
export declare const StopNameAbbreviationRules: AbbreviationRule[];
