import { BudgieLine } from "../output/budgieLine";
export declare type NumericType = "float" | "int";
export declare const isNumericTypeName: (type: string) => type is NumericType;
export declare const getNumericTypeNameFromUsages: (usages: (string | number | BudgieLine)[]) => NumericType;
