type Platform = 'win32';
export interface AppUpdateYmlOptions {
    name: string;
    url: string;
    channel?: string;
    updaterCacheDirName?: string;
    publisherName?: string;
}
/**
 * Returns the contents of the app-update.yml file, which you should place in
 * your app package's "resources" folder. This file is used by the auto-updater
 * to determine where to download updates from.
 */
export declare function getAppUpdateYml(options: AppUpdateYmlOptions): Promise<string>;
export interface ChannelYmlOptions {
    installerPath: string;
    version: string;
    releaseDate?: string;
    platform?: Platform;
}
/**
 * Returns the contents of the channel.yml file, which you should place in your
 */
export declare function getChannelYml(options: ChannelYmlOptions): Promise<string>;
export {};
