import { Romanize } from "./Romanize";
import { Format } from "./constants";
export * from './constants';
export * from './interfaces';
export * from './types';
export * from './Romanize';
declare const HangulRomanize: {
    Romanize: typeof Romanize;
    Format: typeof Format;
};
export default HangulRomanize;
