/** * Make isomorphic destructurable for object and array at the same time. * * @see https://solidjs-use.github.io/solidjs-use/shared/makeDestructurable */ declare function makeDestructurable, A extends readonly any[]>(obj: T, arr: A): T & A; export { makeDestructurable };