/**
 * Add an APK repository
 * @param repoUrl The URL of the repository to add
 * @returns Whether the repository was added successfully
 */
export declare function addApkRepository(repoUrl: string): Promise<boolean>;
/**
 * Enable the community repository
 * @returns Whether the repository was added successfully
 */
export declare function enableCommunityRepository(): Promise<boolean>;
/**
 * Get the Alpine version
 * @returns The Alpine version
 */
export declare function getAlpineVersion(): Promise<string>;
