import { Characters, Options } from './types.js';
declare const getCharacters: (options: Options) => {
    '0': Record<string, string>;
    '1': {
        [x: string]: string;
    };
};
declare const getMappedCharacters: (options: Options, usePriority: boolean) => Characters;
declare const swapCharacters: (options: Options) => Record<string, string>;
export { getCharacters, getMappedCharacters, swapCharacters };
//# sourceMappingURL=characters.d.ts.map