import type { AstroConfig, AstroUserConfig } from '../../types/public/config.js'; import { type Flags } from '../flags.js'; interface InfoOptions { flags: Flags; } export declare function getInfoOutput({ userConfig, print, }: { userConfig: AstroUserConfig | AstroConfig; print: boolean; }): Promise; export declare function printInfo({ flags }: InfoOptions): Promise; export declare function readFromClipboard(): string; export {};