/** * Sticky Note ID Generation * * Generates sequential sticky note IDs (SN-001, SN-002...). * * @task T5280 * @epic T5267 */ /** * Generate the next sticky note ID. * * Finds the highest existing SN-XXX ID and increments. * * @param projectRoot - Project root path * @returns Next sticky note ID (e.g., "SN-042") */ export declare function generateStickyId(projectRoot: string): Promise; //# sourceMappingURL=id.d.ts.map