/** * Generates a Kit script that displays a menu for selecting scriptlets from a specific group. * * This script is used when a markdown file with scriptlets has an H1 header with metadata. * It creates a menu showing all scriptlets in that group. * * @param groupName - The name of the scriptlet group to filter by * @returns A Kit script string that can be executed */ export declare function generateScriptletMenuScript(groupName: string): string; /** * Generates a preview description for a scriptlet group menu. * * @param groupName - The name of the scriptlet group * @returns A preview description string */ export declare function generateScriptletMenuPreview(groupName: string): string;