/**
 * Remove readonly modifier from a type
 */
export declare type Writeable<T> = {
    -readonly [P in keyof T]: T[P];
};
