export declare type URL = string; export declare type Headers = Record; export declare type Parameters = Record | FormData; export interface RequestCanceler { cancel: (message?: string) => void; } export declare type UnauthorizedCallback = () => void;