/** * Enum definitions of possible alias mode values */ export declare enum InsertNoteLinkAliasModeEnum { snippet = "snippet", selection = "selection", title = "title", prompt = "prompt", none = "none" } /** * String literal types generated from {@link InsertNoteLinkAliasModeEnum} */ export declare type InsertNoteLinkAliasMode = keyof typeof InsertNoteLinkAliasModeEnum; /** * Namespace for configuring {@link InsertNoteLinkCommand} */ export declare type InsertNoteLinkConfig = { aliasMode: InsertNoteLinkAliasModeEnum; enableMultiSelect: boolean; }; /** * Generates default {@link InsertNoteLinkConfig} * @returns InsertNoteLinkConfig */ export declare function genDefaultInsertNoteLinkConfig(): InsertNoteLinkConfig;