import type { Runtype } from './runtype'; /** * An object that matches a Typecript `Record` type. * * You pass a runtype for the objects keys and one for its values. * Keeps you save from unwanted propertiers and evil __proto__ injections. */ export declare function dictionary, U extends Runtype>(keyRuntype: T, valueRuntype: U): Runtype, ReturnType>>;