import type { UI, UIElement, StateLike } from '../ui-element'; type StateMap = Record>; /** * Pass states from one UIElement to another * * @since 0.8.0 * @param {StateMap} stateMap - map of states to be passed from `host` to `target` * @returns - partially applied function that can be used to pass states from `host` to `target` */ declare const pass: (stateMap: StateMap) => (ui: UI) => Promise>; export { type StateMap, pass };