/**
 * Base64 图床提供者
 * 将本地图片转换为 Base64 Data URI,无需上传到云端
 * 适用于微信公众号一键复制功能
 */
import type { ImageBedProvider, ImageBedType, UploadResult, Base64Config } from '../types.js';
export declare class Base64Provider implements ImageBedProvider {
    readonly type: ImageBedType;
    private config;
    constructor(config: Base64Config);
    /**
     * 上传单张图片(转换为 Base64)
     */
    upload(imagePath: string, _remotePath?: string): Promise<UploadResult>;
    /**
     * 批量上传图片
     */
    uploadBatch(imagePaths: string[]): Promise<UploadResult[]>;
    /**
     * 验证配置(Base64 无需配置,始终有效)
     */
    validateConfig(): Promise<boolean>;
}
//# sourceMappingURL=base64-provider.d.ts.map