#!/usr/bin/env node
import "es6-shim";
import "reflect-metadata";
import "source-map-support/register";
declare const load: (directory: any, basename: any) => any;
declare const watchConfigs: (directory: any, story_key: any, episode_key: any) => void;
declare const getPreviewData: (story_key: string, episode_key: string) => import("./app/models/configuration/PreviewConfiguration").PreviewConfiguration;
declare const getActionData: (story_key: string, action_key: string) => {
    experience: import("./app/models/configuration/PreviewConfiguration").PreviewConfiguration;
    actionConfig: import("./app/models/configuration/support/StoryAction").StoryAction;
};
declare const writePreviewData: (story_key: any, episode_key: any) => void;
declare const getStoryDataFileName: (episode: any) => any;
declare const conventions: import("./app/services/ConventionService").ConventionService;
declare const setupMockXAPI: (basePath: any, key: any, episode: any) => (devServer: any) => void;
declare const deploymentReplacements: (entryName: any) => ({
    pattern: RegExp;
    replacement: (match: any, key: any) => string;
} | {
    pattern: string;
    replacement: string;
})[];
declare const previewReplacements: (basePath: string, recursive?: boolean) => any[];
export { load, watchConfigs, getActionData, getPreviewData, getStoryDataFileName, writePreviewData, setupMockXAPI, deploymentReplacements, previewReplacements, conventions, };
