/** * Sticky Note Retrieval * * Gets a single sticky note by ID. * * @task T5280 * @epic T5267 */ import type { StickyNote } from './types.js'; /** * Get a sticky note by ID. * * @param id - Sticky note ID (e.g., "SN-042") * @param projectRoot - Project root path * @returns The sticky note or null if not found */ export declare function getSticky(id: string, projectRoot: string): Promise; //# sourceMappingURL=show.d.ts.map