interface RequestOptions {
    method: 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'GET';
    body?: BodyInit;
}
declare function PHXFetchAPI(url: string, options: RequestOptions): Promise<any>;
export default PHXFetchAPI;
