import { Command } from 'commander';
import { PAYLOAD_DESCRIPTION, PAYLOAD_FLAG } from './global-options';
export type CustomCommanderOption = {
    flag: string;
    description: string;
    defaultValue: string | boolean | undefined;
    envVar?: string;
};
export { PAYLOAD_FLAG, PAYLOAD_DESCRIPTION };
/** Creates the commander program with all dt-app commands */
export declare function createProgram(): Command;
