import type { Picked, PlainObject } from './types.js'; export declare const pick: (object: T, ...keys: Keys) => { [key in Keys[number]]: T[key]; }; export declare const pickState: (...keys: Keys) => (state: T) => Picked;