/**
 * Preview the built story site
 */
export declare function previewCommand(options?: PreviewOptions): Promise<void>;
/**
 * Run preview command (alias)
 */
export declare const preview: typeof previewCommand;
/**
 * Options for the preview command
 */
export declare interface PreviewOptions {
  port?: number
  open?: boolean
}