export declare enum WaifuType {
    SFW = "sfw",
    NSFW = "nsfw"
}
/**
 * @typedef {Object} WaifuData
 * @property {string[]} categoryNsfw - The NSFW categories
 * @property {string[]} categorySfw - The SFW categories
 * @property {string} type - The type of the image
 * @example
 * const { waifu } = require("kiutils")
 * waifu("sfw").then(console.log)
 *
 * // => "https://..."
 */
export declare function waifu(type?: WaifuType): Promise<string>;
//# sourceMappingURL=waifu.d.ts.map