import type { IVersionActionsProps } from './ArtifactActionModal'; import type { ICurrentVersion, IVersionRelativeAgeToCurrent } from './utils'; export declare const useUnpinVersion: (payload: IVersionActionsProps) => () => void; export declare const usePinVersion: (payload: IVersionActionsProps, currentVersion: ICurrentVersion | undefined, ageRelativeToCurrent: IVersionRelativeAgeToCurrent) => () => void; export declare const useMarkVersionAsBad: (payload: IVersionActionsProps) => () => void; export declare const useMarkVersionAsGood: (payload: IVersionActionsProps) => () => void;