export declare type IndexedStrings = {
    [key: string]: string;
};
export declare type IndexedObjects = {
    [key: string]: object;
};
export declare type StringOrObject = object | string;
