import type { string_color, string_person_fullname } from '../../types/string_person_fullname';
/**
 * Result of random fullname with color.
 */
export type RandomFullnameWithColorResult = {
    fullname: string_person_fullname;
    color: string_color;
};
/**
 * Handles random fullname with color.
 *
 * @private internal helper function
 */
export declare function $randomFullnameWithColor(): RandomFullnameWithColorResult;
