import { JSONSchema, ValidateFunction } from '../validation'; /** * Meta-transaction to be relayed * @alpha */ export type MetaTransaction = { from: string; params: [string, string]; }; /** * @alpha */ export declare namespace MetaTransaction { const schema: JSONSchema; const validate: ValidateFunction; } //# sourceMappingURL=meta-transactions.d.ts.map