import { KeyNamePair } from "./KeyNamePair";
export declare class StoryInputMap extends KeyNamePair {
    /**
     * A map of input keys with their translations.
     * @TJS-examples ["local-key: foreign-key"]
    */
    map: {
        [Key: string]: string;
    };
}
