export declare const DESCRIPTION = "Generates one or more words|sentences|paragraphs";
export declare const USAGE = "3 words [options]";
/**
 * An object containing the clipboard copy commands for different platforms.
 *
 * - `DARWIN`: Command for macOS (`pbcopy`).
 * - `LINUX`: Command for Linux (`xclip -selection clipboard`).
 * - `WIN32`: Command for Windows (`clip`).
 */
export declare const COPY: {
    DARWIN: string;
    LINUX: string;
    WIN32: string;
};
export declare const CANNOT_DETERMINE_PLATFORM = "Could not determine host operating system.";
declare const _default: {
    DESCRIPTION: string;
    USAGE: string;
    COPY: {
        DARWIN: string;
        LINUX: string;
        WIN32: string;
    };
    CANNOT_DETERMINE_PLATFORM: string;
};
export default _default;
