export interface GalleryTemplate { /** Template id — what you pass to `flows init `. */ name: string; /** One-line summary for `flows init --list`. */ summary: string; /** The action source (.js) written verbatim. */ source: string; /** The capability manifest (.manifest.json) written verbatim. */ manifest: string; } export declare const GALLERY: GalleryTemplate[]; /** The default template when `flows init` is run with no name. */ export declare const DEFAULT_TEMPLATE = "cex-limit"; export declare function getGalleryTemplate(name: string): GalleryTemplate | undefined;