/// import * as dntShim from "./_dnt.shims.js"; export type StructuredClonable = { [key: string]: StructuredClonable; } | Array | ArrayBuffer | ArrayBufferView | BigInt | bigint | dntShim.Blob | Boolean | boolean | Date | Error | EvalError | Map | Number | number | RangeError | ReferenceError | RegExp | Set | String | string | SyntaxError | TypeError | URIError; /** Clones a state object, skipping any values that cannot be cloned. */ export declare function cloneState>(state: S): S;