import { VideoCaptionsSuggestion } from 'types/entities.types'; export declare const FETCH_VIDEO_CAPTIONS_SUGGESTIONS: string; export declare const SET_VIDEO_CAPTIONS_SUGGESTIONS: string; export declare type VideoCaptionsSuggestionRes = Omit & { _id: string; }; export interface SetVideoCaptionsSuggestionsPayload { useCaseId: string; captionCount: number; videoCaptionsSuggestions: VideoCaptionsSuggestionRes[]; } export declare const setVideoCaptionsSuggestions: (payload: SetVideoCaptionsSuggestionsPayload) => { type: string; payload: SetVideoCaptionsSuggestionsPayload; }; export declare const fetchVideoCaptionsSuggestionsNetworkLabel: (useCaseId: string, captionCount: number) => string; export declare const fetchVideoCaptionsSuggestions: (useCaseId: string, captionCount: number) => any;