import { SelectValue } from '../Select/typings'; type CreationTracker = { newlyCreatedIds: Set; unselectedCreatedIds: Set; allCreatedIds: Set; }; export declare function useCreationTracker(): { creationTrackerRef: import("react").RefObject; filterUnselected: (options: SelectValue[]) => SelectValue[]; clearUnselected: () => void; markCreated: (id: string) => void; clearNewlyCreated: (ids?: string[]) => void; markUnselected: (ids: string[]) => void; isNewlyCreated: (id: string) => boolean; isCreated: (id: string) => boolean; }; export {};