/** * Sticky Note Purge * * Permanently deletes sticky notes (hard delete). * * @task T5363 */ import type { StickyNote } from './types.js'; /** * Purge (permanently delete) a sticky note. * * @param id - Sticky note ID * @param projectRoot - Project root path * @returns The deleted sticky note or null if not found */ export declare function purgeSticky(id: string, projectRoot: string): Promise; //# sourceMappingURL=purge.d.ts.map