import type { Command } from 'commander'; interface CommandOptions { direction: 'remote' | 'local' | 'both'; } declare const status: ({ direction }: CommandOptions, program: Command) => Promise; export default status;