export type Text = '' | '일' | '이' | '삼' | '사' | '오' | '육' | '칠' | '팔' | '구'; export type Power = '' | '십' | '백' | '천'; export type Dot = '' | '만' | '억' | '조' | '경'; export declare const textSymbol: Text[]; export declare const powerSymbol: Power[]; export declare const dotSymbol: Dot[];