export interface NestedDict<TValue> {
    [name: string]: TValue | NestedDict<TValue>;
}
export declare type URLString = `http${string}`;
