export declare function getPackageConfig(packageName: string, pagination?: {
    index: number;
    count: number;
}): Promise<string | null>;
export declare function getPackagePath(packageName: string): string;
export declare function getLocalPackageConfig(packageName: string): string | null;
export declare function downloadRemotePackageConfig(packageName: string): Promise<string | null>;
export declare function getRemotePath(packageName: string, pathTemplate?: string): string;
export declare function downloadFile(remotePath: string, localPath: string): Promise<boolean>;
export declare function getRemoteFile(remotePath: string): Promise<string | null>;
