import type { ActionInputs, ActionOutputs } from './utils/types';
/**
 * Run fly environment process
 *
 * @param inputs Deployment options
 * @param throwOnError Whether to throw on error
 */
export declare function flyEnvironment(inputs: ActionInputs, throwOnError?: boolean): Promise<ActionOutputs>;
