import { SelectOptionProps } from './SelectTypes'; export interface UseSelectedItemsProps { defaultValue?: string | string[]; value?: string | string[]; options: SelectOptionProps[]; multiple: boolean; } export declare const useSelectedItems: ({ defaultValue, value: updatedValue, options, multiple, }: UseSelectedItemsProps) => [SelectOptionProps[], React.Dispatch>];