import { URI } from '../model/uri'; import { Location } from '../model/location'; import { ResourceLink } from '../model/note'; import { NoteCreationTrigger } from './note-creation-types'; /** * Factory class for creating different types of note creation triggers */ export declare class TriggerFactory { /** * Creates a command trigger for note creation initiated by VS Code commands * * @param command The command name that triggered note creation * @param params Optional parameters associated with the command * @returns A command trigger object */ static createCommandTrigger(command: string, params?: Record): NoteCreationTrigger; /** * Creates a placeholder trigger for note creation from wikilink placeholders * * @param sourceUri URI of the source note containing the placeholder * @param sourceTitle Title of the source note * @param location Location information for the placeholder in the source note * @returns A placeholder trigger object */ static createPlaceholderTrigger(sourceUri: URI, sourceTitle: string, location: Location): NoteCreationTrigger; } //# sourceMappingURL=note-creation-triggers.d.ts.map