import { TAbbreviation } from "./types/TAbbreviation";
export default function optionsValidator(options?: TAbbreviation): {
    decimals: number;
    suffixes: string[];
    suffixSpace: boolean | undefined;
};
