export declare type FancifySet = 'circled' | 'negative circled' | 'fullwidth' | 'math bold' | 'math bold fraktur' | 'math bold italic' | 'math bold script' | 'math double struck' | 'math mono' | 'math sans' | 'math sans bold' | 'math sans italic' | 'math sans bold italic' | 'parenthesized' | 'regional indicator' | 'squared' | 'negative squared'; export declare const sets: FancifySet[]; export declare const characters: Array<{ char: string; circled?: string; 'negative circled'?: string; fullwidth?: string; 'math bold'?: string; 'math bold fraktur'?: string; 'math bold italic'?: string; 'math bold script'?: string; 'math double struck'?: string; 'math mono'?: string; 'math sans'?: string; 'math sans bold'?: string; 'math sans italic'?: string; 'math sans bold italic'?: string; parenthesized?: string; 'regional indicator'?: string; squared?: string; 'negative squared'?: string; }>; export default function fancify(input: string, set: FancifySet): string;