import 'rollup-plugin-inject-process-env'; /** * Extracts the ZIP code from a given address string. * * @param address The address string to extract the ZIP code from. * @returns The extracted ZIP code, or undefined if no valid ZIP code is found. */ export declare function extractZipFromAddress(address?: string): string | undefined;