import { type CommonOpts } from "./common.js";
export declare function proposalsCommand(repo: string, opts: CommonOpts): Promise<void>;
export declare function showCommand(repo: string, id: string, opts: CommonOpts): Promise<void>;
export declare function diffCommand(repo: string, id: string, opts: CommonOpts): Promise<void>;
export declare function approveCommand(repo: string, id: string, opts: CommonOpts & {
    sha?: string;
}): Promise<void>;
export declare function rejectCommand(repo: string, id: string, opts: CommonOpts & {
    reason?: string;
}): Promise<void>;
export declare function commentCommand(repo: string, id: string, text: string, opts: CommonOpts): Promise<void>;
export declare function requestChangesCommand(repo: string, id: string, opts: CommonOpts & {
    note?: string;
}): Promise<void>;
