/** * Retrieves the base URL from environment variables. * * @param {string} [env='APP_API'] - The environment variable name without the platform prefix. * @returns The base URL for the specified environment. * @example 'APP_EXAMPLE_API' */ export declare const getBaseURL: (env?: string) => string | undefined;