import { type RefsReader } from '../refs.js'; export interface PreviewCommandOptions { unapproved?: boolean; out?: string; baseUrl?: string; } export declare function resolvePreviewRef(client: RefsReader, ref: string, includeUnapproved: boolean): Promise<{ name: string; version: string; previewUrl: string; }>; export declare function previewCommand(ref: string, opts: PreviewCommandOptions): Promise; //# sourceMappingURL=preview.d.ts.map