/** Dictionary type for asserting over some values within an object. */
export declare type AllPropertyLiteralsDict<T> = {
    [key in keyof T]: T[key];
};
