import { type ITerminal } from '@rushstack/terminal'; /** * @public * Dev-deploy metadata */ export interface IDevDeployMetadata { loaderUrl?: string; debugManifestUrl: string; deployUrl: string; } export interface IPrintDevDeployLinkOptions { terminal: ITerminal; metadata: IDevDeployMetadata; testingPageUrl?: string; } /** * Prints out a link to a page where you can test your changes. Note that loaderUrl and debugManifestFile * should both be fully qualified URLs. If the dev_deploy_url environment variable is not set, * advice is given on how to set it and the query parameters & hash are printed separately. */ export declare function printDevDeployLink(options: IPrintDevDeployLinkOptions): void; //# sourceMappingURL=DevDeployLinkPrinter.d.ts.map