declare type PortunusConvertedValue = string | number;
interface PortunusOutput {
    error?: string;
    convertedValue?: PortunusConvertedValue;
}
export declare function portunus(numeral: string): PortunusOutput;
export declare function portunus(integer: number): PortunusOutput;
export {};
