import { Dispatch, SetStateAction } from 'react';

interface UseFontConverter {
  text: string;
  setText: Dispatch<SetStateAction<string>>;
  convertedText: string;
  setFont: (font: 'preeti' | 'pcs nepali' | 'kantipur') => void;
}

declare function useFontConverter(
  defaultFont?: string
): UseFontConverter;

export default useFontConverter;