import { Digit, InputNumber } from './type.js';
export declare function trimLeft(str: string, char: string): string;
export declare function trimRight(str: string, char: string): string;
export declare function splitToDigits(str: string): Digit[] | null;
export declare function validateNumber(value: InputNumber): string;
