import { type ActionInputs } from './schemas/action-inputs.schema';
import { type ActionOutputs } from './schemas/action-outputs.schema';
/**
 * Run fly deployment process
 *
 * @param inputs Deployment options
 * @param throwOnError Whether to throw on error
 */
export declare function flyDeployment(inputs: ActionInputs, throwOnError?: boolean): Promise<ActionOutputs>;
