import { AxiosResponse } from 'axios'; import { default as ResponseParserChain } from '../ResponseParserChain'; import { Leaf7EncryptOptions } from './types'; export default class Leaf7EncryptResponseParser { options: Leaf7EncryptOptions; constructor(options: Leaf7EncryptOptions); parse(response: AxiosResponse, chain: ResponseParserChain): AxiosResponse | undefined; }