declare type ColorType = 'foreground' | 'background';
declare const _default: (str: string, color: string | undefined, type: ColorType) => string;
export default _default;
