import type { InstalledPiApp } from "./types.js"; export type InstallInput = { readonly source: string; readonly requestedRef?: string; readonly yes?: boolean; }; type GithubSource = { readonly owner: string; readonly repo: string; readonly subdir?: string; }; export declare function installPiApp(input: InstallInput): Promise; export declare function parseGithubSource(value: string): GithubSource; export {};