/** convert string to number, t = true then throw and hail it */ export declare function strToNum(input: string, t?: boolean): string | number; /** convert string to boolean, same as above */ export declare function strToBool(input: string, t?: boolean): string | boolean;