import type { CodeWarning } from "./common"; import type { AssetTransfer, CollectibleTransfer, Transfer, UnknownTransfer } from "./transfer"; export declare function validateHeaders(fields: string[] | undefined): CodeWarning[]; export declare const validateRow: (row: Transfer | UnknownTransfer) => string[]; /** * Validates, that addresses are valid, the amount is big enough and a decimal is given or can be found in token lists. */ export declare const validateAssetRow: (row: AssetTransfer) => string[]; export declare const validateCollectibleRow: (row: CollectibleTransfer) => string[];