import { Command, type OptionValues } from 'commander';
/** Create domain based function command */
export declare function createFunctionCommand(): Command;
/** Function for creating an app function */
export declare function createFunction(functionName: string | undefined, program: OptionValues): Promise<void>;
