type DefaultResponseWithErrorType = {
    error: true;
    message: string;
};
type DefaultResponseWithoutErrorType<ResponseDataType> = {
    error: false;
    message: string;
    data: ResponseDataType;
};
export type DefaultResponseType<ResponseDataType> = DefaultResponseWithErrorType | DefaultResponseWithoutErrorType<ResponseDataType>;
export {};
//# sourceMappingURL=helpers.d.ts.map