import { ThemeKey } from './types.js';
import '@lsk4/colors';

declare function themeizeRandom(str: string, randomName?: string | number | null): string;
declare function themeize(str: string, themeKey?: ThemeKey | null): string;
declare function themeizeLight(str: string, themeKey?: ThemeKey | null): string;

export { themeize, themeizeLight, themeizeRandom };
