export declare type Url = {
    method: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'OPTIONS';
    pathname: string;
    search?: string;
};
