declare function alphabeticalSort(arr: string[]): string[];
declare const exportFunctions: {
    validateName: (name: string) => boolean;
    alphabeticalSort: typeof alphabeticalSort;
};
export default exportFunctions;
//# sourceMappingURL=util.d.ts.map