export type GrowthBookApiError = {
    message: string;
};
/**
 * Parses the Axios error object based on the GrowthBook public API error response
 * @param error {AxiosError}
 * @return error message {string}
 */
export declare const errorStringFromResponse: (error: unknown) => string;
