declare type TGetAxiosInstancePathProps = { certificatePath: string; keyPath: string; }; declare type TGetAxiosInstanceBase64Props = { certificateBase64: string; keyBase64: string; }; export declare type TGetAxiosInstanceProps = TGetAxiosInstancePathProps | TGetAxiosInstanceBase64Props; export declare const getAxiosInstance: (props: TGetAxiosInstanceProps) => import("axios").AxiosInstance; export {};