export declare const cdn: string; export declare const cdn_host: string; declare const CDN: { /** * cdn前缀的图片 * carphoto.atzuche.com */ image(path: string, width?: number | undefined, height?: number | undefined): string; /** * cdn前缀的静态资源 * cdn.atzuche.com */ asset(path: string, width?: number | undefined, height?: number | undefined): string; }; export default CDN;