import type { Command } from 'commander'; interface CommandOptions { yes?: boolean; status?: string; tag?: string; experimentalPushAll?: boolean; } declare const push: ({ yes, status, tag, experimentalPushAll }: CommandOptions, program: Command) => Promise; export default push;