/** * Shortcut backlog provider stub. * * This is a minimal implementation that throws helpful errors. * Full Shortcut integration will be implemented in a future release. */ import type { TicketRef } from '../types/ticket.js'; import type { BacklogProvider, BacklogProviderName, Ticket, TicketCreateParams, TicketUpdates, AuthCheckResult } from './types.js'; import type { SpecKitConfig } from '../config.js'; /** * Shortcut backlog provider (stub implementation). * * Provides error messages with setup instructions. * Full implementation pending. */ export declare class ShortcutProvider implements BacklogProvider { readonly name: BacklogProviderName; private readonly config; constructor(config: SpecKitConfig); getTicket(_ref: string): Promise; createTicket(_params: TicketCreateParams): Promise; updateTicket(_ref: string, _updates: TicketUpdates): Promise; checkAuth(): Promise; getTicketUrl(ref: string): string; parseRef(input: string): TicketRef | null; } //# sourceMappingURL=shortcut.d.ts.map