import type { State } from '../types.js'; export declare const EMPTY: {}; export declare function pluck(state: State, keys: string[]): any; export declare function pluckWithShallowCopy(state: State, keys: string[], createMissingObjects?: boolean): any; export declare function getValue(state: State, value: any, addKey?: string, addValue?: any): any;