import type { CommandContext } from './context.js'; export declare function handleAliasSet(ctx: CommandContext, name: string, email: string | undefined): void; interface AliasListOptions { json: boolean; } export declare function handleAliasList(ctx: CommandContext, opts?: AliasListOptions): void; export declare function handleAliasRemove(ctx: CommandContext, name: string | undefined): void; export {};