export declare const mutable: >(val: T) => Mutable; export declare type Mutable = { -readonly [P in keyof T]: T[P]; }; export declare type HTMLElementCustomized = HTMLElement & T; /** * @deprecated stop to use null * @see {@link https://github.com/sindresorhus/meta/discussions/7} */ export declare type Nullable = T | null; export declare type Arrayable = T | T[]; export declare type Awaitable = Promise | T;