export declare const isDecimalAmount: (amount: string, decimals?: number) => true | "Incorrect amount";
export declare const isAddress: (address: string) => boolean | "Incorrect address";
export declare const isTransactionHash: (s: string) => true | "Incorrect transaction hash";
export declare const isPrivateKey: (hash: string) => true | "Incorrect private key";
export declare const isUrl: (url: string) => true | "URL must start with http:// or https://" | "Invalid URL";
