/** * Template source information */ export type TemplateSource = { /** Tarball download URL */ tarballUrl: string; /** Path in tar (e.g., "cli-kintone-main/plugin-templates/javascript") */ pathInTar: string; }; /** * Download and extract template from specified URL * NOTE: Currently only supports GitHub API URLs due to authentication handling */ export declare const downloadAndExtractFromUrl: (opts: { source: TemplateSource; outputDir: string; }) => Promise;