import 'rollup-plugin-inject-process-env'; /*! Copyright (c) 2025, XAPP AI */ /** * From a given zip code, determine if it is in the service area defined by the provided zip codes. * * @param zip Zip code as a string * @param zipCodes Array of zip codes that define the service area, masking is supported, such as "12345", "1234*", "123*5", "12*45". */ export declare function isInServiceArea(zip: string, zipCodes: string[]): boolean;