export interface PinningOptions { method?: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH'; headers?: Record; body?: string; timeoutInterval?: number; sslPinning?: { certs: string[]; }; [key: string]: any; } export interface PinningResponse { status: number; headers: Record; body: string; [key: string]: any; } export declare function getAvailableCertificates(): string[]; export declare function fetchDataWithPinning(url: string, options: PinningOptions): PinningResponse; //# sourceMappingURL=index.d.ts.map