import { AREA_MAP } from './config';
export declare function purgePathCache({ secretId, secretKey, area, flushType, paths, }: {
    secretId: string;
    secretKey: string;
    area?: (typeof AREA_MAP)[keyof typeof AREA_MAP];
    flushType: 'flush' | 'delete';
    paths: string[];
}): Promise<any>;
