/**
* If the string represents an existing path, read the file. Otherwise, return the string itself.
*
* @param string The string to handle.
* @returns The handled string.
*/
export declarefunctionreadFileOrString(string: Buffer | string): Promise<Buffer | string>;