/** * Mapping helpers for store state and actions. */ /** * Maps store state properties to a reactive object for use in components. * * @param store - The store instance * @param keys - State keys to map * @returns Object with mapped properties */ export declare const mapState: , K extends keyof S>(store: S, keys: K[]) => Pick; /** * Maps store getters to a reactive object for use in components. * * @param store - The store instance * @param keys - Getter keys to map * @returns Object with mapped getters */ export declare const mapGetters: , K extends keyof G>(store: G, keys: K[]) => Pick; /** * Maps store actions to an object for easier destructuring. * * @param store - The store instance * @param keys - Action keys to map * @returns Object with mapped actions */ export declare const mapActions: any>, K extends keyof A>(store: A, keys: K[]) => Pick; //# sourceMappingURL=mapping.d.ts.map