import { AxiosInstance } from "axios"; export interface Post { key_type: number; amount: number; key: string | number; } declare const initializeService: (fetcher: AxiosInstance, isMock: boolean) => { post: (payload: Post) => Promise>; }; export default initializeService;