import { GlobalParams, Config, ItemsStateAndParams, PluginBase, StringParams, ItemState } from '../types'; export interface GetItemsParamsArg { defaultGlobalParams: GlobalParams; globalParams: GlobalParams; config: Config; itemsStateAndParams: ItemsStateAndParams; plugins: PluginBase[]; } declare type GetItemsParamsReturn = Record; export declare function getItemsParams({ defaultGlobalParams, globalParams, config, itemsStateAndParams, plugins, }: GetItemsParamsArg): GetItemsParamsReturn; export declare function getItemsState({ config, itemsStateAndParams, }: { config: Config; itemsStateAndParams: ItemsStateAndParams; }): Record; export declare function getItemsStateAndParams({ defaultGlobalParams, globalParams, config, itemsStateAndParams, plugins, }: GetItemsParamsArg): ItemsStateAndParams; export {};