import { type CommonOpts } from "./common.js";
export declare function draftsListCommand(repo: string, opts: CommonOpts & {
    all?: boolean;
}): Promise<void>;
export declare function draftsShowCommand(repo: string, draftId: string, opts: CommonOpts): Promise<void>;
export declare function draftsCreateCommand(repo: string, opts: CommonOpts & {
    title?: string;
}): Promise<void>;
export declare function draftsSubmitCommand(repo: string, draftId: string, opts: CommonOpts & {
    note?: string;
}): Promise<void>;
export declare function draftsDiscardCommand(repo: string, draftId: string, opts: CommonOpts): Promise<void>;
