export * from './react-hook';

declare class FontConverter {
  constructor(fontName: string);
  convert(text: string): string;
}

declare function preetiToUnicode(text: string): string;
declare function pcsToUnicode(text: string): string;
declare function kantipurToUnicode(text: string): string;

export {
  FontConverter,
  preetiToUnicode,
  pcsToUnicode,
  kantipurToUnicode
};