declare module 'react-native-zip-archive' { export function creteFile(filePath: string, fileContent: string): Promise; export function pathParameters(): string; export function zip(source: string, target: string): Promise; export function unzip(source: string, target: string, charset?: string): Promise; export function zipWithPassword(source: string, target: string, password: string, encryptionMethod?: 'STANDARD' | 'AES-128' | 'AES-256' | ''): Promise; export function unzipWithPassword(assetPath: string, target: string, password: string): Promise; export function isPasswordProtected(source: string): Promise; export function subscribe(callback: ({ progress, filePath }: { progress: number, filePath: string }) => void): void; export function unzipAssets(assetPath: string, target: string): Promise; export function getUncompressedSize(source: string, charset?: string): Promise; }