import { PrepareCommandRecipe, ActionRecipe } from '../recipe/ActionRecipe';
import { CustomCommandModel } from './utils/CustomCommandModel';
declare abstract class AugnitoCustomCommands {
    static dynamicList: CustomCommandModel[] | undefined;
    static addCommand(commandName: string, functionParam?: any, callback?: (param?: any) => void): void;
    static prepareCustomCommandRecipe(command: PrepareCommandRecipe): Partial<ActionRecipe | null>;
}
export { AugnitoCustomCommands };
