import { type DashboardCommands } from "../commands/index.js"; /** * Hook that takes command creator and returns function that will result into dispatching this command. * * @remarks * The created function takes original command creators parameters as per example below. * * @example * ``` * // create a dashboard command to reset AttributeFilter selection * const resetAttributeFilter = useDispatchDashboardCommand(resetAttributeFilterSelection); * * // somewhere else in the code call the command to reset the filters * ** * resetAttributeFilter(); * ** * ``` * * @param commandCreator - command factory * @returns callback that dispatches the command * @public */ export declare const useDispatchDashboardCommand: (commandCreator: (...args: TArgs) => TCommand) => (...args: TArgs) => void; //# sourceMappingURL=useDispatchDashboardCommand.d.ts.map