import type { string_color, string_person_fullname } from '../../types/typeAliases';
export type RandomFullnameWithColorResult = {
    fullname: string_person_fullname;
    color: string_color;
};
/**
 *
 * @private internal helper function
 */
export declare function $randomFullnameWithColor(): RandomFullnameWithColorResult;
/**
 * TODO: [🤶] Maybe export through `@promptbook/utils` or `@promptbook/random` package
 */
