type Options = {
    normalizeUnicode?: boolean;
    removeDuplicates?: boolean;
    includeCharacters?: string;
    excludeCharacters?: string;
};
declare const extract: (input: string, { normalizeUnicode, removeDuplicates, includeCharacters, excludeCharacters, }?: Options) => string;
export { Options, extract };
