interface IdlType {
    kind: string;
    [key: string]: any;
}
interface IdlArg {
    name: string;
    type: IdlType | string;
}
export declare function serializeArguments(args: any[], instructionArgs: IdlArg[], idlTypes: any[]): any[];
export {};
