/** * Generate a pseudo-random boolean value * * @return true or false */ export declare const boolean: () => boolean; /** * Get a random US state abbreviation * * @return A state abbreviation */ export declare const state: () => string; /** * Get a random city from the list of the 25 most populous US cities * * @return The name of the city */ export declare const city: () => string; /** * Generate a pseudo-random integer between min (inclusive) and max (exclusive) * * @param min - The minimum value (inclusive) * @param max - The maximum value (exclusive) * @return A random integer between min and max */ export declare const number: (min?: number, max?: number) => number; /** * Generate a random name (first last) from a list of most popular first and last names * * @return A generated */ export declare const name: () => string; /** * Generate a sentence comprised of lorem words with a min and max number of words. * * @param minWords - The minimum number of words in the sentence (inclusive) * @param maxWords - The maximum number of words in the sentence (exclusive) * @param lastChar - An optional character to end the sentence other than a period, such as '?' * @return A randomly-generated lorem sentence. */ export declare const sentence: (minWords?: number, maxWords?: number, lastChar?: string) => string; /** * Generate a random set of paragraphs comprised of lorem sentences of varying length * * @param minParagraphs - The minimum number of paragraphs to generate (inclusive) * @param maxParagraphs - The maximum number of paragraphs to generate (exclusive) * @return A string containing paragraphs separated by newlines */ export declare const paragraphs: (minParagraphs?: number, maxParagraphs?: number) => string;