/**
 * Create a new token standard transfer to send tokens to another party
 *
 * @example
 *   ```typescript
 *   const result = await client.createTokenStandardTransfer({
 *   receiver_party_id: 'party123',
 *   amount: '100',
 *   description: 'Payment for services',
 *   expires_at: Date.now() + 3600000, // 1 hour from now
 *   tracking_id: 'unique-tracking-id'
 *   });
 *
 *   ```;
 */
export declare const CreateTokenStandardTransfer: new (client: import("../../../../../../../core").BaseClient) => import("../../../../../../../core").ApiOperation<{
    receiver_party_id: string;
    amount: string;
    description: string;
    expires_at: number;
    tracking_id: string;
}, {
    output: import("../../../../../../../generated/apps/wallet/src/main/openapi/wallet-internal").components["schemas"]["TransferInstructionResultOutput"];
    sender_change_cids: string[];
    meta: {
        [key: string]: string;
    };
}>;
//# sourceMappingURL=create.d.ts.map