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