export declare const alphabet = "abcdefghijklnmopqrstuvwxyz"; export declare const base10 = "123456789"; export declare const symbols = "!\"#$%&'()*+,-./:;<=>?@[]^_`{|}~"; export declare const passwordSymbols = "?.,!_-~$%+="; export declare const similarLetters = "ilLIoO0"; declare const _default: { alphabet: string; base10: string; symbols: string; similarLetters: string; passwordSymbols: string; }; export default _default;