import { AxiosResponse } from 'axios';
export type UsePostConfigType = { initialValue?: any; transformFunction?: (data: any) => any };
export type UsePostReturnType<T> = {
data: T;
loading: boolean;
error: any;
post: (body: any) => void;
response: AxiosResponse | undefined;
};