import { CaptionSaveCommandArguments } from './types';
export declare const caption: {
    /**
     * Saves caption texts into the Caption graphql collection.
     *
     * @param captionSaveCommandArguments the text with which the method will save the caption.
     * Refer to {@link CaptionSaveCommandArguments} to understand the argument structure.
     */
    save: (captionSaveCommandArguments: CaptionSaveCommandArguments) => void;
    addLocale: (captionAddLocaleCommandArguments: string) => void;
};
