import { Command, Hook } from '@oclif/config'; declare type HookFunction = (this: Hook.Context, options: HookOptions) => unknown; declare type HookOptions = { Command: Command.Class; argv: string[]; commandId: string; result?: PreDeployResult; }; declare type PreDeployResult = { [aggregateName: string]: { mdapiFilePath: string; }; }; export declare const hook: HookFunction; export default hook;