import { ISpwServiceDispatch } from '../dispatch/context'; declare type PartialSpwConcept = { label?: string | null | undefined; hash?: string | null | undefined; }; /** * Returns a function that saves a concept to a label */ export declare function useSaveCallback(concept: PartialSpwConcept | null, dispatch: ISpwServiceDispatch): (src: string) => void; export {};