/** * @typedef {Object} DynamicUrl * @property {?string} dynamicUrl */ /** @type {DynamicUrl} */ export const dynamicUrl: DynamicUrl; declare const _default: import("api/options").APIConfig; export default _default; export type DynamicUrl = { dynamicUrl: string | null; };